A simple message ticker in which each message is associated with a unique URL, and clicking the button will take the surfer to a different URL. <form name="slideshow"><div align="center"><center><p><b> Update</b><br /><textarea rows="5" name="S1" cols="30" wrap="virtual" readonly style="border-style:... (Continue reading)
How would you differentiate if the call save() was to save a blogs or save comments? The solution was to use blog_save() or comment_save() before the introduction of classes in which we could write the save() function within the Blog... (Continue reading)
This tutorial require 1 PHP file and 1 table of mySQL database. 1. counter.php 2. Database “mypage” and table “counter” with 1 fields: visitor(Int, 11). You need to insert a first one record with “0″. Counter.php Source Code < ?php // For using session variables put... (Continue reading)
You can export your MySQL database to .csv file format (Microsoft Excel file) easily using php. This tutorial require 1 PHP file and 1 table of mySQL database. 1. exportcsv.php 2. The table is with 2 fields: id(auto_increment), name(varchar, 50) and put some... (Continue reading)
Here is a simple script in javascript which shows how you can add a link in your website to make your visitors add the webpage to their Browsers Favorits. <html> <head> <script language=”JavaScript”> function AddtoFav() { window.external.AddFavorite(’http://www.mistonline.in/wp’); } </script></head> <body> <button onclick=”AddtoFav();”> Click here to add www.mistonline.in/wp main page to your... (Continue reading)