Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Run javascript inside php 1

Status
Not open for further replies.

DimisD

Technical User
Feb 7, 2007
15
GR
Hi,

How can i put the following code inside php?

<?php

<p><A HREF="javascript:history.go(-1)" style="color:#D41839; text-decoration:none;">previous page</A></p>

?>


Thank you
 
Code:
<?php

echo '<p><A HREF="javascript:history.go(-1)" style="color:#D41839; text-decoration:none;">previous page</A></p>';

?>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top