another most use
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”; ?>
For number decimal
<?
$f2 =number_format(1000,2,”.”,”,”);
echo”$f2″;
?>
output is : 1,000.00
For direct function.
<?
header( “Location: member_area.php” );
?>
Script that contain that will direct to member_area.php
Related post :
