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.
Tagged with: Browser • Display • Echo • Location • Move • Page • Script • Specific
Filed under: PHP
Like this post? Subscribe to my RSS feed and get loads more!
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";
?>
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.