How Can Move Php Echo Script Or Display To An Specific Location In The Browser Page?
For example… I do the mysql connect php mysql connect scripts before the display scripts (using macromedia dreamweaver) how can I move to an specific location to fit on the fields on the background form.
Related posts:
- How To Find Geographical Location For A Particular Ip Address Using Php Script? Hi all, I want to know how to find geographical...
- Display memory size and location Learn more about Display memory size and location by visiting...
- display MySQL database rows alphabetically Learn more about display MySQL database rows alphabetically by visiting...
- Display rows from only a certain category of a MySQL database Learn more about Display rows from only a certain category...
- Move text Learn more about Move text by visiting our website....
Related posts brought to you by Yet Another Related Posts Plugin.
Tags: Browser, Display, Echo, Location, Move, Page, Script, Specific


May 12th, 2009 at 11:27 pm
you can store the retrieved data to a variable then call the variable on where you want to put your data
for example:
< ?php
$retrieved_data = "data retrieved";
?>
May 12th, 2009 at 11:27 pm
The only way I can think of it to create a HttpRequest object in the browser using javascript. Then you can get the response back from the server (using the php echo). You will receive this response in the javascript and then you can use javascript to place this response anywhere you want in the web page.