Page 1 of 1

Go backwards in the code...

Posted: Sun Jun 05, 2005 10:06 am
by Sacapuss
Hi !

I'd like to know if it's possible to go backwards in the code.
I know

Code: Select all

\b
, but i don't understand how to have it work (i tried unsuccessfully with js and php).

Example :

Code: Select all

1234\b
could give

Code: Select all

123
.

Could anyone ligthen me, please ?

Thanx for your help !

Posted: Sun Jun 05, 2005 10:23 am
by hawleyjr

Posted: Sun Jun 05, 2005 11:18 am
by Sacapuss
Thank you, hawleyjr, for answering !

I have the file

Code: Select all

<?php
echo &quote;
<img 
src=\&quote;http://$logo_url\&quote; 
...
onclick=\&quote;window.open('$page_url')\&quote;
>
&quote;;
?>
i call each time i need this 'frame'.
One time, the onclick matter must be

Code: Select all

location='mailto...'
. That's why i wonder how to get rid of

Code: Select all

window.open('
.

Thanx for the help !