Why OsCommerce?
Someday, I had situation where must choose which E-Commerce Open Source Application match with my E-Commerce website concept. OsCommerce is the chosen one, after trial another Open Source like Joomla with Virtue Mart and Magento. The reason is OsCommerce is simple application, low space used, and off course easy to use. Although OsCom have difficulty to edit or develop new modules and template. You must have PHP skill to do that.
osCommerce is an online shop e-commerce solution that offers a wide range of out-of-the-box features that allows online stores to be setup fairly quickly with ease, and is available for free as an Open Source based solution released under the GNU General Public License.
osCommerce was started in March 2000 and has since matured to a solution that is currently powering 12,319 registered live shops around the world.
Today, osCommerce has been taken to the next level, moving towards an e-commerce framework solution that not only remains easy to setup and maintain, but also making it easier for store administrators to present their stores to their customers with their own unique requirements.
The success of osCommerce is secured by a great and active community where members help one another out and participate in development issues reflecting upon the current state of the project.
You are more than welcome to contribute to the success of osCommerce by helping out in the realization of the project, by participating in the forums, by donating to the team developers and sponsoring the project, or just by spreading the word!
http://www.oscommerce.com
4/26/2011
Specific Input Validation
In default, PHP is not provide pre-devined function to handle specific input, like Email Address, IP, and Host name. Beside that, you can creat patern with using regular expression.
To do specific input validation, You need to use ereg() or eregi() . Both function have same functionality, but ereg() using by case-sensitive patern, while eregi() is case-insensitive.
Example:
/** Function for date verification, with format dd-mm-yyyy, @return true if correct, false if wrong **/
function isTgl($tgl) {
if (ereg("^([0-9]{1,2})-([0-9]{1,2})-([0-9]{4}$",$tgl, $part) && checkdate($part[2], $part[1], $part[3])) { return true; } else { return false; }}
/*function to email verification */
function isEmail($str) {
return(ereg('^[^@]+@([a-z\-]+\.)+[a-z]{2,4}$', $str)); }
if (isset($_POST['oke'])) {
if (isTgl($_POST['tgl']) && isEmail($_POST['email'])) {
echo 'input valid
';
echo $_POST['tgl']. '
' .$_POST['email'];
}else {
echo 'input tidak valid';
}
}
checkdate() function will be return true value if month value is 1-12, year 1-32767 and day value depend on year and month (from Gregorian calender).
To do specific input validation, You need to use ereg() or eregi() . Both function have same functionality, but ereg() using by case-sensitive patern, while eregi() is case-insensitive.
Example:
/** Function for date verification, with format dd-mm-yyyy, @return true if correct, false if wrong **/
function isTgl($tgl) {
if (ereg("^([0-9]{1,2})-([0-9]{1,2})-([0-9]{4}$",$tgl, $part) && checkdate($part[2], $part[1], $part[3])) { return true; } else { return false; }}
/*function to email verification */
function isEmail($str) {
return(ereg('^[^@]+@([a-z\-]+\.)+[a-z]{2,4}$', $str)); }
if (isset($_POST['oke'])) {
if (isTgl($_POST['tgl']) && isEmail($_POST['email'])) {
echo 'input valid
';
echo $_POST['tgl']. '
' .$_POST['email'];
}else {
echo 'input tidak valid';
}
}
checkdate() function will be return true value if month value is 1-12, year 1-32767 and day value depend on year and month (from Gregorian calender).
XtoYsoft Blu-Ray to HD Ripper
This application is professional tools for convert Blue Ray file to HD (High Definition) with excellent result.
Usefull :
BlueRay -> avi HD -> mkv HD and many more.
www.xtoysoft.com
Usefull :
BlueRay -> avi HD -> mkv HD and many more.
www.xtoysoft.com
Langganan:
Postingan (Atom)