ecco appunto.
grazie!![]()
ps. visto il mio nuovo sitozzo?![]()
ecco appunto.
grazie!![]()
ps. visto il mio nuovo sitozzo?![]()
Bello veramente. Solo non ho capito perchè il guestbook esce in un popup (è un popup quello no?). Credo che sia una scelta non adatta ai tempi che corrono oggi visto che moltissimi possiedono dei popupblocker me compreso (solo che3 a me quello incluso in firefox ha fatto aprire lo stesson il popup). Mi chiarisci un po' il concetto?
eCommerceRS.NET - Commerciante, vendi on-line!
Il mio nick è mircov e non mirco!!!
mmm... avevo chiesto ad andrea, ma grazie lo stesso...
il popup blocker funziona solo quando le popup si aprono automaticamente, non quando si aprono con un link. quindi no problem, però ad esempio la demo nella mia firma nel forum qui, non va bene...
ciao,
jack.
Ho capito, grazie. Infatti quando clicco sul link mi si apre e non avevo capito bene perchè. Cmq ora tutto chiaro. Grazie, ciao!
eCommerceRS.NET - Commerciante, vendi on-line!
Il mio nick è mircov e non mirco!!!
ho capito qual e' la differenza
Let us create one PHP file and name it as data.php . Here is the content of this file
<?
echo "Hello
"; // this will print Hello with one line break
?>
Now let us create one more file and from that we will be including the above data.php file . The name of the file will be inc.php and the code is given below.
<?
include "data.php"; // this will display Hello once
include "data.php"; // this will display Hello once
include "data.php"; // this will display Hello once
include_once "data.php"; // this will not display as the file is already included.
include_once "data.php"; // this will also not display as the file is already included.
?>