Search:
Type: Posts; User: atortega
Search :
Search took 0.01 seconds.
Hi,
Can we redirect this URL using htaccess?
From:
http://www.ABC.com/members/DUMMY_FOLDER/sites/XYZ/x1/index.php
To:
http://www.ABC.com/members/sites/XYZ/x1/index.php
Hi,
I had this login url: http://www.dumingag.com/memberLogin.php.
My problem is that I want to write a script to login automaitically using curl. Does anyone know how I can do this?
Thanks....
Sorry, if this is not the correct place to post.
How can I write a ReWriteRule to my .htaccess file that will redirect all access to index.php except for the access of callcounter2.php.
Hope...
Thanks, but can you translate it to php?
Hi,
How can I write a regulara expression that will strip out all characters on a string except for alpha,numeric, and a space?
Thanks.
Nogdog,
I tried this: '/(?<=<b>).+(?=</b>)/U'
but I got this warning:
Warning: preg_match() [function.preg-match]: Unknown modifier 'b' in /home/atortega/public_html/for_testing/test2.php on...
I tried to use this regex using PHP's preg_match:
/<b>[\s\S]*?<\/b/gi
But I got this error message:
Warning: preg_match() [function.preg-match]: Unknown modifier 'g' in...
Hi,
How can I write a regular expression that will search all the text inside the html bold tags like below:
<b>Texts to Search</b>
Thanks.
atortega
Nogdog,
The regular expression really helps on finding xml declaration using PHP's preg_replace.
Thanks.
How can I write a regular expression to search for the following line:
<?xml version="1.0" encoding="iso-8859-1"?>
Thanks.
Hi,
I want my site to be able to recieved a photo send via mms to a spicific email address. My script then parsed the received email and save the photo to a database or to a certain folder.
My...
Thanks bokeh. I will try that one now.
Is there any sites that offers a free download of vbulletin scripts?
Thanks.
I had a domain name called www.sugbo-online.com
Now, all users registed to my web-site has a folder named corresponding to their account name.
I want this users to display their account page...
Perfect.
Thank you very much.
Hi,
Can anyone give a sample script to download a text file?
You see, I had a product table in mysql then I had a script that will read the contents of the table and write it in the text file....
I am using IIS 5.1 as a web server undex windows xp (service pack 2). The thing that puzzles me is that my script cannot create or modify files outside its current directory.
I guess windows and...
One thing that I also observed, I can write/create a file on my current directory. That is where the location of my running script. But I attempt to write/create a file to a location other than the...
As I see it, whenever I write a file outside the wwwroot folder, I can write it but if I will attempt to write/create a file inside the wwwroot heirarchy, I have no permission to do so.
Anybody...
I got the same warning.
Do you have any idea why I could open a new file handle?
I got this warning:
Notice: Undefined index: DOCUMENT_ROOT in c:\inetpub\wwwroot\admin\createStatic.php on line 55
I had the following codes on my script to write a new file to a directory:
$vForm="Some Texts....";
$handle = fopen('atortega.html',xt');
fwrite($handle, $vForm);
fclose($handle);
When I...
Nogdog, thanks for your advice.
Hi!
I had a frameset on my page with three frames in it. Using javascript we can use this code to refresh/run the other frame:
<script language=JavaScript>
...
Thanks. Your right. I found it in css. It really helps a lot.