$sql=mysql_query("select * from dosyabegeni where veri_id=''.get_custom_field('dwcode').''");
I would like to place the following PHP code:
<?php get_custom_field('dwcode'); ?>
.. What's wrong?
=''.get_custom_field('dwcode').''");
Main Code:
<?php
include('/home/test/public_html/EntegreOz/DosyaBegeni/config.php');
$sql=mysql_query("select * from dosyabegeni where veri_id=".get_custom_field('dwcode')."");
while($row=mysql_fetch_array($sql))
{
$sira_id=$row['sira_id'];
$veri_id=$row['veri_id'];
$begeni=$row['begeni'];
?>
Thank you!
I know.. I could not tell more, Im sorry for the English
mysql_*functions to write new code. They are no longer maintained and the community has begun deprecation process. See the red box? Instead you should learn about prepared statements and use either PDO or MySQLi. If you can't decide which, this article will help you. If you pick PDO, here is good tutorial. – Madara Uchiha Oct 2 '12 at 14:41mysql_querylike you have here. You're going to get yourself into serious trouble. This code has a severe SQL injection bug that can be automatically exploited. – tadman Oct 2 '12 at 14:53