Code: Select all
<?php
$query = "INSERT INTO this_table (client, page, title, text, right_left, num)
VALUES ('$client', '$page', '$title', '$text', '$right_left', '$num')";
?>Thanks
Moderator: General Moderators
Code: Select all
<?php
$query = "INSERT INTO this_table (client, page, title, text, right_left, num)
VALUES ('$client', '$page', '$title', '$text', '$right_left', '$num')";
?>Code: Select all
<?php
$mysql_result=mysql_query($query,$connection);
$num_rows-@mysql_num_rows($mysql_result);
?>