I have insert in PDO. I need to write a select query before that and get the count of the rows. Based on that I must write an if condition before insert.
Below is my code.
<?php
$dbhost = "localhost";
$dbuser = "root";
$dbpass = "";
$dbname = "test";
function placeholder( $text, $count = 0, $separator = ',' ) {
$result = array();
if ($count > 0) {
for ($x = 0; $x < $count; $x++) {
$result[] = $text;
}
}
return implode( $separator, $result );
}
$pdo = new PDO("mysql:host=$dbhost;dbname=$dbname",$dbuser,$dbpass);
$datafields = array( 'email' => '', '