Jump to content

Chikwado

Members
  • Posts

    287
  • Joined

  • Last visited

Everything posted by Chikwado

  1. Chikwado

    Mysql Configure

    Whatever I try to do in mysql it return error, For example connecting to database. 1 connection failed, 2 access denied, 3 you are not allow to connect to localhost or 127.0.0.1, what could be the problem?
  2. Chikwado

    Mysql Configure

    Yes, with xampp. I need help I have read from so many documentation but still did not understand what they were saying. For example I have xampp documentation here. http://chiquado.site90.net/phpmyadmin
  3. Chikwado

    Mysql Configure

    Some one help: how to configure mysql/phpmyadmin, example: C: /programe files/mysql/mysql/my.ini I am working with xampp version 5.6.3
  4. Ok, thank a lots. I want to buy domain name and they showed me 2 service the first one is $6 and second is $10 then I was confused on what they were doing, I prefer domain with hosting service.
  5. Some one check this: what is differences this two domain services. .com + Hosting .com Only ".com + hosting" became cheaper than the second one what is the differences, some one check it.
  6. @Francis Aneke, Also read from this link: http://stackoverflow.com/questions/3226138/how-to-send-e-mail-to-multiple-recipients-from-database-query-php But I am afraid to post this link because I don't know If it violate w3schools policy.
  7. Mysql access denied, what is my problem. Some one help http://chiquado.site90.net/table.php
  8. Chikwado

    Uploader Error

    Some one check this: the following php code is returning error that is: $target_path = "magazine/"; $target_path = $target_path .basename($_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'])) { echo "The file" .basename($_FILES['uploadedfile'] ['name']) ."has been uploaded"; }else{ echo "the file" .basename($_FILES['uploadedfile'] ['name']) ."was not uploaded"; } The file can be found here http://chiquado.site90.net/magazine some one help.
  9. Chikwado

    Uploader Code

    Ok, You see while making upload file, we start with somethings like this: <form action="upload.php" method="post" name=" "> Is it possible to remove the following code as it is no more directing to another file? action="upload.php"?
  10. Chikwado

    Uploader Code

    Some one check this: Is it possible to put my php uploader code in the body section?
  11. Chikwado

    Contactus Form

    Yes! My stuff is now working, I was doing a different thing not actually what I wanted. The link is here http://chiquado.site90.net/myform.php. Thank you all for help and support.
  12. Chikwado

    Contactus Form

    I am sorry for all that mistake, It's just the way I am working hard over it without progress. This is the code: <!DOCTYPE html> <html> <body> <form method="POST" action="<?php echo $_SERVER ['PHP_SELF']; ?>"> FirstName:<input type="text" name="fname"> LastName:<input type="text" name="lname"> Email:<input type="text" name="email"> Phone:<input type="text" name="phone"> Message:<input type= "textarea" id="txt" name="message"> Male:<input type="radio" name="radioa"> Female:<input type= "radio" name="radiob"> <input type="submit" value="Submit"> </form> <?php $to = 'info@chiquado.site90.net'; if($_SERVER["REQUEST_METHOD"] =="POST") { $anameone = $_POST['fname']; $bnametwo = $_POST['lname']; $cnamethree = $_POST['email']; $dnamefour = $_POST['phone']; $enamefive = $_POST['message']; $fnamesix = $_POST['radioa']; $gnameseven = $_POST['radiob']; if(mail($to, $subject, $message)) { echo 'mail sent'; }else{ echo 'mail not sent'; } } </body> </html>
  13. Chikwado

    ContactUs Form

    Some one check this: I am still working on my contactus form. If you fill the form and click submit. It deliver that information but what you filled in the form are not delivered. The form has the following link http://chiquado.site90.net/myform.php some one help.
  14. Chikwado

    Contactus Form

    This file is redirecting to another page, Every php file will excute or return error. For example: http://chiquado.site90.net/magazine. if you choose a file to upload it return error as it can not excute. I have try all the way on crafting my code.
  15. Chikwado

    Contactus Form

    Sorry, I was in a hurry mood while posting those code, I have edited it now.
  16. Chikwado

    Contactus Form

    The following are the php code: <!DOCTYPE html> <html> <body> <?php //Recipient recipient = "info@chiquado.site90.net"; //Get user input $name = $_GET["fname"]; $name = $_GET["lname"]; mail($recipient, $fname, $lname); echo "mail sent"; ?> </body> </html> Although my form has 4 input field with one radio button. I was testing 2 field. The above php has extension as: form_handler.php html form action has: form_handler.php Then if html code is needed I will show it. Thanks.
  17. Chikwado

    Contactus Form

    Are there a modify options for it, Or do I have to contact the hosting company to take a look at it?.
  18. Chikwado

    Contactus Form

    Some one check this: My contactus form does not work. After clicked submit it does not return any alert or deliver the message. These file can be found here. http://chiquado.site90.net/project Are there any where I can read more tutorials? Some one help.
  19. Now, What do I need to do so that it will work, Are there a configuration that I need to make for it?
  20. Yes, I have discover how to do it, I was runing it ina wrong way. But, how do you delete that default page using FTP?
  21. Some one check this: I have just transfer this files. Then, I don't know actually what is wrong, I have try to locate the existing default page to remove it and replace it with my own but could not find any options. Some one help please. http://www.chiquado.site90.net
  22. Some one check this: while transfering my file using ftp, I get the following error. command: AUTH SSL. Response: 502 SSL/TLS authentication not allowed Status: insecure server, it does not support SSL/TLS. Command: chiquado Response: 550 SSL require Error: Could not connect to server Now, what could be the problem? I am testing it in local use xampp. I Input hostname as "localhost" and follow by username and password I created in filezilla server. Some one help.
  23. How to make multiple fileupload, I have 2 html file, The first one has 10 field the other has one field. Then, I am thinking which one to add my php script, I am planning to add loop in my script. Although in scripting language, it was said that crafting something repeatedly it would be better to use loop. In those 2 html file which one do I have to add my script, I am planning to test it with loop.
  24. This your post require a short question, then the answer would be very brief at a same time. If you are trying to write javascript ajax or jquery ajax then it's easy. Read the tutorial.
×
×
  • Create New...