A free site can I have ?
Hey all;
Can I have a free PHP webhosting that allow me to use the function mail() ?
or equivalent in asp or any other methods ?
Just I need to save feedback or bug report from my C++ app ,, when the user choose to send me a feedback or a bug report I want to resive it in my mail box directly ... how can I ?
Or if it possible I want a method to save this in files in a free webhosting site and I'll check them from file manger for example ?
If u can help me with web codes ? "don't worry about c methods"
Thank u.
[580 byte] By [
Amahdy] at [2007-11-11 9:53:43]

# 1 Re: A free site can I have ?
check out the following...
http://www.free-webhosts.com/free-php-webhosting.php
http://freeola.com/free-web-hosting/
http://www.doteasy.com/
# 2 Re: A free site can I have ?
Thanks man ; but the best one told me to pay 0.99 USD throw paypal to activate the service ; they want this routine to be sure that I'm not a spammer . otherwise other sites doesn't allow free acounts to use mail() function at all :(
As I' havent a paypal acount (although it's only 1$) I wont pay anythink and I need help in another idea :
How to save data in a file in a webserver so I can view this data from it's filemanger or equivalent ?
THankx for reply in advance :)
Amahdy at 2007-11-11 23:35:37 >

# 3 Re: A free site can I have ?
do you have the webserver running on your machine...in which case its pretty easy...keep it anywhere where the filemanager can index it...public_html , www, and public_ftp if you want to view it using a FTP client or a browser, and in case the webserver is on a remote machine...well i don't get the problem...
# 4 Re: A free site can I have ?
No at all ; I want just to register in a free webhosting plan ; use their service to view files that have been sent by my application ,, Now just I want the method ; how to put an php or asp code in the webserver to do this :
For example :
my app will navigate to a url like this :
www . free_web_hosting_service.amahdy.com\bug_report.php?subject="bug in some place"&body="bug explaination , I have found an error when ... bla bla ... etc"
All I want the way to code the "bug_report.php" or "bug_report.asp" or any way to be able to write in a file on that server and then read this file later to view bugs and like that ..
Thank you .
Amahdy at 2007-11-11 23:37:32 >

# 5 Re: A free site can I have ?
Ok I found it "fwrite()" thats what I needed !
I don't love webdeveloping but I had to search for it last night coz I need to finalize my application .
Thanks Nrip , you also gived me good free hosting sites , looking forword to have free SMTP site or an acount in paypal to pay this 1$ ! :)
Amahdy at 2007-11-11 23:38:36 >

# 6 Re: A free site can I have ?
Please I want to know what's wrong with this :
<?
$f="bugs.txt";
fopen($f, "a") or die("ERR");
fputs($f, $s);
fputs($f, $t);
fclose($f);
echo "END"
?>
I call it like that : xxx.php?s="testSubject"&t="TestBugText"
xxx is a free domain in a free webhosting .. I wish have in the file some thing like this :
=Begin
testSubject
testBugText
=End
what's wrong ?
I need help urgently .. thanks in advance .
Amahdy at 2007-11-11 23:39:41 >
