This topic is locked

Bare Minimum to Display Data on View Page

7/30/2013 12:49:44 PM
PHPRunner General questions
N
nohope4you author

Can you tell me what the absolute minimum that needs to be coded for a view page to display a record? I'd like to have the ability to write something like:



<html>

<head>

//a bunch of necessary lines for connecting to database

</head>

//php code for security session

<body>

<table>

This is the data in field1:{$field1_value}

</table>

</body>

</html>


Thank you so much!

Sergey Kornilov admin 7/31/2013

Not sure I understand. Are you talking about PHPRunner View page or about something else?

N
nohope4you author 7/31/2013

I meant an actual PHPrunner view page, but if it can be done with custom files that would be even better.



Not sure I understand. Are you talking about PHPRunner View page or about something else?

N
nohope4you author 7/31/2013

I guess another way to put it would be:
If I wanted to create a page called Information.php, what would need to be in that file and what other files would need to be created to display field information when a user views that page as Information.php?editid1=test without any influence from the rest of the project.
So the end result to the user would be
Field1 is {$field1_value}

Field2 is {$field2_value}
and none of the projects css properties would influence that page except for security logins of course.