Posted by forcescript on March 2, 2009
What is the best way to remove spyware? Should you just rely on your computer’s anti virus software programs? The answer is no, because a virus can be different from spyware.
Posted by forcescript on September 11, 2008
Another most use at php
For collect data from database
<?
$result = mysql_query( “SELECT * FROM reseller” ) or error( mysql_error() );
$data = mysql_fetch_array( $result );
$totalMember = mysql_num_rows( $result );
?>
if at database has 14 input,
<?= $totalMember ?> will output 14
<?= $totalMember ?> same with <? echo”$totalMember”; ?>
(more…)