Tumgik
#maxshow
cherryfund · 3 years
Photo
Tumblr media
maxshow
0 notes
essentialsfrome · 5 years
Photo
Tumblr media
All the way from MINSK, MINSK Belarus! . I love my supporters on the other side of the world!! . . #minsk #belarus #gomel #follow #grodno #brest #germany #likeforlikes #like #paris #berlin #photooftheday #minskgram #barcelona #love #riga #mary #richcat #doodahking #turkmenistan #istanbul #partybus #dozari #look #hollywood #blackhouse #maxshow #blackhall #republic https://www.instagram.com/p/BwnQlLjh3Ye/?utm_source=ig_tumblr_share&igshid=s2jayhwfs4fw
0 notes
themaxshow-blog · 5 years
Text
"Terra dei Fuochi ,Rocca Cencia ,quarta puntata intervista a Romanella  VI Mun, e cittadini" di MaxShow via #spreaker  https://www.spreaker.com/user/maxshow/terra-dei-fuochi-rocca-cencia-quarta-pun …  … e su
0 notes
fabulosfab · 6 years
Photo
Tumblr media
FabWazHere @ MaxShow L'OpenSpace https://www.instagram.com/p/Bpu5NfMFUiw/?utm_source=ig_tumblr_share&igshid=1ebxv2l6wxdq8
0 notes
spitech · 6 years
Text
Guestbook 2
Posted under Programming on December 31, 2006
This is a guestbook script, that stores all records in a MYSQL database. Displays records by pages. Highly configurable interface. For more information contact me at: [email protected] See demo of the script at: http://php.inc.ru <? /************************************************** ****************************** Guestbook by lyonchik: [email protected] Contact me to report bugs, give your comments or to develop your own personalized Web applications. This is a simple guestbook. It consists only of one file. All you need to do is create a MYSQL database table and set the variables below to conform to your settings and that's it. The sample query to create a table should be: "CREATE TABLE guestbook (id int(5) NOT NULL auto_increment, name varchar(20), email varchar(20), message text, date datetime, PRIMARY KEY (id))" And the guestbook is ready to go. Enjoy! You can freely distribute this code. For any suggestions and comments write to: '[email protected]'. Feel free to email me URLs where this guestbook works, I would love to hear that my work is appreciated. ************************************************** *******************************/ // Define MYSQL server information $server = 'localhost'; // MYSQL server; $user = ''; // User to connect to MYSQL server; $password = ''; // Password; $database = 'database name'; // The name of the database; $table = 'guestbook'; // The name of your database table; // Define page layout variables $guestbook_name = "My guestbook page"; // Guestbook page name; $titlecolor = 'black'; // Title font color; $tablewidth = "90%"; // Table width in pixels or percentage; $bgcolor = '#AAAAAA'; // Table background color value (name of hex equivalent); $bordercolor = '#000000'; // Table border color value (name of hex equivalent); $bordersize = 5; // Table border size; $cellspacing = 0; // Table cellspacing value; $cellpadding = 5; // Table cellpadding value; $messagecellcolor = '#BBAAAA'; // message cell color; $namecolor = '#0000EE'; // name font color; $messagecolor = '#000099'; // message font color; $mainfont = '#000033'; // main text font color; $maxshow = 10; // Number of messages to display per page; ?> <HTML> <META http-equiv=Content-Type content="text/html; charset=windows-1251"> <HEAD> <TITLE> <? echo $guestbook_name; ?> </TITLE> <script language="javascript"> function checkForm() { if ((document.forms.myGB.name.value == '') || (document.forms.myGB.message.value == '')) { alert('Fill in required fields!'); } else { document.forms.myGB.submit(); } } </script> </HEAD> <? echo "<BODY bgcolor=" . $bgcolor . ">"; echo "<div align=center><h1><font color=" . $titlecolor . ">" . $guestbook_name . "</font></h1>"; if (isset($message)) { if ($email == "") { $email = "no_email"; } mysql_connect ($server, $user, $password) or die ("Can't connect!"); mysql_select_db ($database) or die ("Can't open database!"); $sql = "INSERT INTO $table (name, email, message, date) VALUES ('$name', '$email', '$message', NOW())"; $result = mysql_db_query($database, $sql); if ($result) echo "<meta http-equiv='Refresh' content='0; URL=" . $PHP_SELF . "'>"; else echo "Error! Check the form!"; mysql_close(); } if (!isset($show)) { $show = 0; } mysql_connect($server, $user, $password) or die ("Can't connect!"); mysql_select_db($database) or die ("Can't open database!"); $sql = "SELECT * FROM $table ORDER BY id DESC"; $result = mysql_db_query($database, $sql); if ($result) { $count = mysql_num_rows($result); $sqlshow = "SELECT * FROM $table ORDER BY id DESC LIMIT $show, $maxshow"; $result = mysql_db_query($database, $sqlshow); ?> <table width=<? echo $tablewidth ?> cellspacing=<? echo $cellspacing ?> cellpadding=<? echo $cellpadding ?> border=<? echo $bordersize ?> bordercolor=<? echo $bordercolor ?>> <? while (($myrow = mysql_fetch_array($result))) { echo "<tr><td colspan=2 valign=top bgcolor=" . $messagecellcolor . "><font color=" . $messagecolor . ">Sent by <b>" . htmlspecialchars($myrow["name"]) . "</b><i>, " . $myrow["date"] . "</i><br>Email: <a href=mailto:" . htmlspecialchars($myrow["email"]) . ">" . htmlspecialchars($myrow["email"]) . "</a><br><br>" . htmlspecialchars($myrow["message"]) . "</font></td></tr>"; } ?> </table> <? } else echo "Error!"; mysql_close(); echo "<font color=" . $mainfont . ">"; echo "<br>"; $pages = $count / $maxshow; if ($pages < 1) { $pages = 1; } if ($pages / (int) $pages <> 1) { $pages = (int) $pages + 1; } else { $pages = $pages; } $pagenow = ($show/$maxshow + 1); echo "Page " . $pagenow . " of " . $pages . "<br>"; $next = $show + $maxshow; $previous = $show - $maxshow; if ($pages <> 1) { if ($previous < 0) { echo "<a href=" . $PHP_SELF . "?show=" . "$next" . ">"; echo "<acronym title='Next " . $maxshow . " records'>>>></acronym></a> ||"; } elseif ($next >= $count) { echo "<a href=" . $PHP_SELF . "?show=" . "$previous" . ">"; echo "<acronym title='Previous " . $maxshow . " records'><<<</acronym></a> ||"; } else { echo "<a href=" . $PHP_SELF . "?show=" . "$previous" . ">"; echo "<acronym title='Previous " . $maxshow . " records'><<<</acronym></a>"; echo " | "; echo "<a href=" . $PHP_SELF . "?show=" . "$next" . ">"; echo "<acronym title='Next " . $maxshow . " records'>>>></acronym></a> ||"; } } echo " Pages: "; $i = 0; while ($i < $pages) { $ri = $i + 1; $showpage = $i * $maxshow; echo "<a href=" . $PHP_SELF . "?show=" . $showpage . ">" . $ri . "</a> "; $i++; } ?> <p> (*) Required fields <form name='myGB' action=<? echo $PHP_SELF ?> method='post'> * Name:<br><input type='text' name='name' maxlength=20><br> Email:<br><input type='text' name='email' maxlength=20><br> * Message:<br><textarea name='message' rows=5 cols=30></textarea><br> <a href="javascript:checkForm()">Send</a> </form> </font> </div> </BODY> </HTML>
0 notes
coleygirl23 · 10 years
Video
#maxshow #part2 #theclash
2 notes · View notes
themaxshow-blog · 6 years
Link
0 notes