* hadisofian username script {_$nama|} gimana supaya slalu tampil di setiap halaman yang telah di beri kode script di atas?? http://hadi.yn.lt/Biodata.html
2015-03-22 20:12 (edited 2015-03-22 20:13 by hadisofian ) · (0)
* Heriwap * hadisofian Agar berfungsi, Tiap halaman harus ada xtscript yang sama, yang di gunakan pada halaman tersebut, anda dapat memasang di _header atau _footer contoh HALAMAN 1 HALAMAN 2 maka akan mengeluarkan nama yang sama,
2015-03-22 22:04 (edited 2015-03-22 22:24 by Heriwap ) · (0)
* hadisofian * Heriwap uda semua bro ..dia mau tampil hanya ditempat halaman yg di dipilih aja misal kan <form action="http://hadi.yn.lt"> cuma disitu aja tampilnya ..
2015-03-23 06:24 · (0)
* hadisofian * Heriwap uda semua bro ..dia mau tampil hanya ditempat halaman yg di dipilih aja misal kan <form action="http://hadi.yn.lt"> cuma disitu aja tampilnya ..
2015-03-23 06:25 · (0)
* Heriwap * hadisofian gunakan xtscript saja bro, sperti di http://heriwap.mobie.in
2015-03-23 07:05 · (0)
* Graham * hadisofian There are 3 options you either have to pass the variable to the new page in the query string of all your links
ie <a href="/page?name={_$name|}">link</a>
or as a "hidden" input in a form
<form action="/page">
<input type="hidden" name="name" value="{_$name|}" />
<input type="submit" value="GO" />
</form>

Copy code

or use a cookie to hold the value and read it on the new page
simple cookie example
set the cookie
<!--parser:xtscript--> 
get name
if $name
call cookie::set $name=name; $val=$name; $expire=999999;$force_current=1
endif
<!--/parser:xtscript--> 
<form action="" method="post" >
  <input name="name" />
  <input type="submit" />
</form>

Copy code

And the retrieve the cookie on your other page
<!--parser:xtscript--> 
var $name=call cookie::get $name=name;$default=visitor
<!--/parser:xtscript-->

Copy code

and use the special $$ xtscript variable
{_$$name|}
2015-03-23 08:09 (edited 2015-03-23 10:04 by Graham ) · (0)
* Heriwap * Graham good..
2015-03-23 08:22 · (0)
* hadisofian * Graham thanks graham
2015-03-23 08:28 · (0)

Online: Guests: 1