Started 5 days, 20 hours ago (2009-11-30 16:50:00)
by peejavery
Why don't you just use stripslashes() ?
Started 1 week, 6 days ago (2009-11-23 12:50:00)
by peejavery
Are you using a different computer at these various locations or the same one? Different
web server? Is the only difference that you are connecting the same device and web server from those different locations?
Started 1 week, 4 days ago (2009-11-24 14:55:00)
by peejavery
What kind of database are you working with? And what
server-side language are you using? Since your questions have been PHP in the past, I will assume it's PHP.
Started 1 week, 5 days ago (2009-11-24 11:35:00)
by StefC
This is the code after line 174:
echo " <a href='".$up[0].($page_num+1).$up[1] ."'>Next</a>";
}
return '';
}
function paginate_next($params,&$smarty)
{
return '';
}
function paginate_last($params,&$smarty)
{
return '';
}
function formtool_init($params, $content)
{
return '';
}
function l($params, $content, &$smarty, &$repeat)
{
return $content;
}
$smarty->register_...
Started 1 week, 5 days ago (2009-11-24 13:03:00)
by niladhar8@gmail.com
Quote:
Originally Posted by niladhar8@gmail.com
i
serialized an array to store in the database and the following was stored in the db
But when i retrieve values from the database like below
Code:
//query and then fetch function to retrieve data
$key[]=unserialize($data['{field name']);
if i echo $data['{...
Started 1 week, 5 days ago (2009-11-24 11:21:00)
by peejavery
Very simple. The only thing you would need to do to keep it active is to set it to run as a scheduled task/cron job.
EDIT: You already know how to read files, right? I'm assuming that you've at least gotten that far in PHP.
Started 2 weeks, 2 days ago (2009-11-20 09:48:00)
by peejavery
PHP only disables certain functions if safemode is enabled. However, allow_url_fopen is not one of those that can be disabled.
Permission denied is a
filesystem rights error. The executing user on the web server does not have full write permission to that folder.
Started 2 weeks, 2 days ago (2009-11-20 09:36:00)
by peejavery
Short answer...no. Not possible.
Started 1 month, 1 week ago (2009-10-30 09:23:00)
by peejavery
It's very possible that they are separate .html files because loading from a file vs database saves your webservers from extra processing.
But, more likely is that they are using
URL rewriting to do it. If you want to use masking instead of redirecting, then use [L] instead of [R].