Jump to content

Mok

Members
  • Posts

    16
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Mok's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. This is a theoretical question. So I won't need any code. Here is an example situation: User signs up for website with a username and password. User connects facebook account. Can I make it so everytime they log in, their facebook logs in too? Am I completely getting it wrong? Thanks, Nick
  2. I thouight perl files were saved with and extension of .pl JandN
  3. I have placed a Perl script into the CGI Bin on my web server and would like to run through Command Prmomt on my computer, can some one help me do this, like what should I type into command prompt, I have looked up a few version, but some do not seem to work, Please help, thanks, Mok
  4. I make the code in notepad then save as a .pl file, but it just deson't save. Mok
  5. The file just doesn’t save at all, I am not sure if I have Perl installed properly, I installed active perl by just going through the setup, is there anything else I need to do? I am running the script on my computer through CMD
  6. I have installed perl in my C: drive, and I try to save a txt document as a .pl file but it doesn't save it. I tried saving it in the Bin folder. I also tried in my documents. Can someone please help, This is for work I need done. Thank is advance, Nick
  7. Mok

    Hidden Folder

    thanks so much guys, I actually had really important files there!!! THank so much . . . again Mok
  8. I am sorry but I didn't know where else to post this. I havehidden a folder with all its contents in it in my documents by going: Right click-Properties and clicked hide then hid all the subfolders and files. I cannot find the files or folder (Obviously) How do I make it visible again? I have even tried control panel folder options and that. Please help. You can delete this after I find out how Mok
  9. phpbb3, or does it have to be a payed one like VBulletin? Nick
  10. How do you make another page on a forum? Like so it can be displayed on the nav bar, for instance like this forum having a rules page. Thanks in advance Mok
  11. Can someone answer these few questions? I need to know as soon as possible since this project needs to be done very soon. thanks very much I have a login script witch was supplied by easykiss123.com and I found a private message script which you can addon to any login script. Here is the link: http://www.pixel2life.com/publish/tutorials/608/simple_private_messaging_system/ The first part of the tutorial has code there whcih is for the MySQL table, but I was wondering (since they did not say so) do I place the sql in the same place of the login script that it will apply to or do I make a new one? Is it also possible with this: http://www.roughguidetophp.com/creating-a-simple-comments-and-login-system-using-mysql-and-php/ but without the other login system? Can I just add the extra bit of sql, and do I have to include the data base connect file? Thanks very much in advance, Nick
  12. Is it possible to have a code that you can insert on your index page that shows only a gif loader for like 5 seconds then disappears and then the website is loaded? I have made a gif loader that goes for like 5 seconds. Or is it possible to redirect from one page to another but with a gif loader? Thanks Mok
  13. Hi I would like to combine a webform where people can post comments with their name and also upload a file at the same time. I cam up with this, but it deon't work: form: <form action="thanks.php" method="POST" class="style7"> <p>Name: <input type="TEXT" name="name"> </p> <p> Email: <input type="TEXT" name="email"> </p> <p>Comment: <input type="text" name="email2" /> </p> <p>comment</p> <p> <label> <textarea name="ED" id="ED" cols="45" rows="5"></textarea> </label> </p> <p>Comment</p> <p>Upload</p> <p><input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Choose a file to upload: <input name="uploadedfile" type="file" /><br /> <input name="Button" type="button" value="Upload File" /> </p> <p> <input type="SUBMIT" name="Submit" value="ok"> </p> </form> Thanks.php <script language="php"> $email = $HTTP_POST_VARS; $mailto = "myemail@gmail.com"; $mailsubj = "Form submission"; $mailhead = "From: $email\n"; reset ($HTTP_POST_VARS); $mailbody = "Values submitted from web site form:\n"; while (list ($key, $val) = each ($HTTP_POST_VARS)) { $mailbody .= "$key : $val\n"; } if (!eregi("\n",$HTTP_POST_VARS)) { mail($mailto, $mailsubj, $mailbody, $mailhead); } </script> Can someone please help improve it so I can use it, thank you very much in advance. Mok
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.