No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
Hello Guyz, I could not found any Forum for Web Servers or something related to my problem so I am posting it here. So I am having trouble with Regular Expressions in HTACCESS. So what I have in my website is : [B]ROOT : (my web root is in a …
Try : [CODE]session_start(); if (isset($_SESSION['session_email'])) { echo $_SESSION['session_email']; // You can use $_SESSION['session_email'] to insert the email wherever you want just like a simple variable }[/CODE]
I have this in my HTACCESS file : [CODE]ErrorDocument 404 http://mywebsite.com/404.php[/CODE] and it works fine for me. Please ensure that the file like 404.php which you are using as alternate 404 page, actually exists !
I am confused... You are using [B]oid[/B] as [B]$_GET[/B] and using [B]$_POST[/B] in header... :O I guess : [CODE]header("Location: checkout.php?oid=".$_POST['oid']."");[/CODE] should be : [CODE]header("Location: checkout.php?oid=".$_GET['oid']."");[/CODE] ...?
Read [B]additional_headers[/B] in [URL="http://php.net/manual/en/function.mail.php"]php mail function[/URL]. You can do something like this : [CODE]$headers = ''; $headers .= 'From: ' . $from . "\r\n"; $headers .= 'Cc: [email protected]' . "\r\n"; $headers .= 'Bcc: [email protected]' . "\r\n"; $mailsent= mail("[email protected]", "$subject", $message, $headers);[/CODE]
Hello Guyz, I wish that the Title of the thread explains itself a lot. I would like to Save an image from an HTTP URL which actually redirects to another URL. Actually, I am trying to Save the Profile picture of Facebook. [B]Example : [/B][URL="https://graph.facebook.com/thakurbhai/picture"]https://graph.facebook.com/thakurbhai/picture[/URL] Now when you will open …
I used to play Counter Strike Condition Zero. I playted it for about 3-4 years and I had been running Game Servers and its Clan website (still managing) ([URL="http://www.clan-icsl.com/"]http://www.clan-icsl.com/[/URL]). Then I left it because it is an addicted game and my brother has got addicted of it which is really …
Hello Guyz :cool:, I am [B]Ankur Thakur[/B], a Student living in [B]New Delhi, India[/B]. I am currently doing [B]B. Tech Computer Science Engineering[/B], a 4 Year Course, from PDM College of Engineering, Bahadurgarh. I have completed my Primary and Secondary Education from KV Shalimar Bagh. I miss my Old School …
Ok Thats nice. I have read somewhere in my C book that if an array is used by just its name,i.e, [B]mpg[/B] then it will return the address of its 0th element and hence : [B]mpg[i][/B] and [B]*(mpg+i)[/B] will give you same values for a Loop. But, there is also …
The End.