What is the maximum size of a database in mysql?
No Answer is Posted For this Question
Be the First to Post Answer
What is php oop?
how to upload more than 50 mb? i tried but session was expired....certain time .....i was set session duration three days .... how to rectified? if any one know that post ur answer as soon as possible?already i was increase php.ini and set Also increase Memory_limit Post_max_size upload_max_filesize..........but not working......
Do you know what are traits?
Explain me what is the importance of "method" attribute in a html form?
Does php need to be installed?
What is php destruct?
What does echo mean in php?
What is move_uploaded_file in php?
What is the $_ server php_self variable?
What is php addslashes?
How to create a text file in PHP?
if i give Limit for mysql query through php command line script like this for ex. $limit=500; $total_items = 1500; for($start=0;$start<$total_items;){ $command = "/usr/bin/php -q /home/sitename/public_html/admin/feedmanager/test.php feedid ".$_GET['feedid']." start ".$start." end ".$limit ; $start = $start+$limit; $command_result = system($command); } so it's execute command for 3 times so it give limit to sql query but if i have 27000 data so it takes long time? so my question is that is that any way from php command line script that i can use for collect all the data at once?