Jump to content

queston


matthew9090

Recommended Posts

If you mean that when the script does something you want a result visible on the page?

To do this you would put an echo tag after each part of the script you want to display with the message you want to display in it, as long as you are not using header redirect it will echo each message as it processes your scripts.

 

eg

 

if ($blah=mysql_query("UPDATE table SET blah='blah' WHERE id='someID'")) {

    echo "blah has been updated<br/>";

}

if (copy some image to the server) {

    echo "some image has been copied to the server<br/>";

}

etc etc

Link to comment
https://forums.phpfreaks.com/topic/237041-queston/#findComment-1218390
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.