Link to home
Start Free TrialLog in
Avatar of rhindo
rhindo

asked on

Displaying output from mysql table in a certain spot on the page

I have a page that displays the contents of a field using "printf".  It displays at the top of the page.  How can I format this so that the information is displayed at a different spot on the page.
Avatar of quad341
quad341

put the command at a different point in the page

ex.

<html>
<head>
<!-- header stuff -->
</head>
<body>
beginnning content<br>
ETC
<?php print_f($whatever); ?>
continue content



that would have it print after the beginning content
ASKER CERTIFIED SOLUTION
Avatar of Kani Str
Kani Str
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rhindo

ASKER

Thanks
You are welcome.