what is the importence of session.save_path in Php.ini file
and wht changes u've to made before using sesssions in ur
php program first time?
Answers were Sorted based on User's Feedback
Answer / suhasini
as far as my knowledge is concern .. to store sessions u've
to give path for session.save_path variable in php.ini file
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nikunj
session.save_path variable hold path for storing session.
in unix system it's generally set to /tmp dir.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / palaniraja.wordpress.com
wht changes u've to made before using sesssions in ur php
program first time?
session_start();
and you have to be sure that no data was sent to client else
it would through an error.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / gurpreet panesar
session.save_path is used to save the temporary session
value in the specified location
Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between the functions unlink and unset?
How do you identify independent and dependent variables in regression analysis?
In forms when i am click submit button it will store on the desired table as well as it send to paticuler mail id. Any body know the answer plz give me detail information.
Does php support polymorphism?
What does $_files means?
Explain me what is the importance of "method" attribute in a html form?
Which function can be used to exit from the script after displaying the error message?
What is the use of header in php?
Why session is required?
Tell me how would you declare a function that receives one parameter name hello?
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?
What are the benefits of using php?