Jump to content

GFXUniverse

Members
  • Posts

    37
  • Joined

  • Last visited

    Never

Everything posted by GFXUniverse

  1. HI guys,, I have created an online booking form with Paypal Buynow button. After Clicking BuyNOW I want the customers to enter their Shipping details when they are on Paypal. Phone and Address How can i do that? and also using on1 and os1 i can enter custom information. but it includes one value for example Select Product Size: The Value will be Small or Large What if want to have multiple values? like Choose Colors: Red, blue, green, white go on. User can choose one of those colors or multiple.. Please tell me how to do it. Thanks Waiting for your responses!
  2. Thank you guyz for your reply i think using Database is best for this Booking system! Thanks
  3. Hi guyz. I need to create a Booking System using form. same like this: https://www.theorytest.net/book-your-theory-test.php Information will be sent to Email. I know the form creation and sending to Email as well! But i this form is divided into pages how can i collect information that will be available to send through email at the end. (when user will complete this booking) Waiting for your reply Thanks
  4. Hi, Actually i just want to know little things as i mentioned (i know PHP / MYSQL) Can any one tell me what tables we need for this type of website in Database? just little tips (Not Coding,) to start please!! Just tell me database structure . and little queries etc... waiting for your reply.
  5. I want to create website similar to this!! Please help me out.
  6. HI. I am talking about this website. http://www.elfster.com/ Please browse this website. Can any one tell me how database structure / queries will work? (i know PHP / MYSQL) Can any one guide me a little bit. I would really appreciate it, Thanks Waiting for reply.
  7. mmmmm finally i got it how can i do this and would like to share with u guyz as well please correct me if there is another way to do it,, SOLUTION: Table 3d_models: id name description thumbnail special_id Table preview_images: id thumbnail image special_id now there is a relation between 3d_models and preview_images tables i can insert special id like this $special_id = md5($fileName . date("d-m-y") . time());
  8. hmmm i see it seems best way,,, but how can i give 3d_model_id to preview_images table? Actually all the data would be inserted at the same time,, for example Table: 3d_models id (Auto increment) name (POST) description (POST) thumbnail_image (POST) Table: preview_images image (POST) thumb (POST) 3d_model_id ??? how would i insert 3d_models' id here??? which is not auto increment?? and i don't know in advance that what id would be inserted for 3d_model's table id??
  9. hi guyz m creating a website, about 3D products for example i have 3D models in my website table for MYSQL is 3d_models Feilds: id name description thumbnail_image preview_images???(we can only add single image URL) but i wanna add multiple images for a product. do i need to have another table called preview_images? that will be related to 3d_models table? or can it be done in a single 3d_models table? i just need a blue print concept, Please help!!!!
  10. hmmmm, the problem is that Paypal does not support my Country Pakistan any alternate? What is the procedure for Google Checkout?
  11. Hi i guyzz i want to know abt a payment processor like this example if some one buy a digital product on my website he clicks to "purchase" and then he goes to next page containing credit card form. buyer simply fills the form and made payment instead of going to any third party website like, Paypal etc. m looking for it,, please help me out!!!
  12. i want to create categories like this http://3docean.net/category/
  13. i got you, can u please tell me the table structure! in examples plz
  14. Hi, I need to create a category system using MySQL + PHP and i know how to do this two tables in database Category id | Name Sub_category id | Name | parent_category and i also know how to display them, like show sub categories WHERE parent _category = Category The result will be Category1 -Sub Category1 -Sub Category2 Category2 -Sub Category1 -Sub Category2 but I need to create a database system that will grab the top level category and list any sub-category it has under it and that in turn will have to list all the categories under that subcategory. Like this Category1 Sub Category1 Sub sub category1 Sub sub category1 Sub Category2 Sub sub category1 Sub sub category1 Category2 Sub Category1 Sub sub category1 Sub sub category1 Sub Category2 Sub sub category1 Sub sub category1 Please help me out! thanks waiting 4 reply
  15. You Welcome
  16. i didn't get it if u mean simply link the page to next or previous page then here is how you can do it its quite simple (may u already know) for page somephrasehere_10.php <a href='somephrasehere_09.php'>Previous Page</a> | <a href='somephrasehere_11.php'>Next Page</a> for page somephrasehere_11.php <a href='somephrasehere_10.php'>Previous Page</a> | <a href='somephrasehere_12.php'>Next Page</a> in php (almost same thing) for page somephrasehere_10.php <?php echo"<a href='somephrasehere_09.php'>Previous Page</a> |"; echo"<a href='somephrasehere_11.php'>Next Page</a>"; ?> for page somephrasehere_11.php <?php echo"<a href='somephrasehere_10.php'>Previous Page</a> |"; echo"<a href='somephrasehere_12.php'>Next Page</a>"; ?>
  17. here you go <?php if(isset($_GET['id'])) { $clanid = $_GET['id']; mysql_connect("localhost", "jnero_admin", "sc55207") or die(mysql_error()); mysql_select_db("jnero_clanlist") or die(mysql_error()); $result = mysql_query("SELECT * FROM clans WHERE id='$clanid'") or die(mysql_error()); $row = mysql_fetch_array( $result ); $clanname = $row['clanname']; $logo = $row['logo']; ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head> <head> <title>Clan List - <?php echo $clanname; ?> </title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Style-Type" content="text/css"> <link href="index_files/general.css" rel="stylesheet" type="text/css"> </head> <div class="main" style="width: 960px; height: 800px"> <center> <h1> <?php echo $clanname; ?> </h1> <img src="<?php echo $logo; ?>"> <br><br> </center> <h3> Clan Members </h3> <?php $result = mysql_query("SELECT * FROM members WHERE clanid='$clanid'") or die(mysql_error()); while($row = mysql_fetch_array( $result )) { $name = $row['name']; $ingamename = $row['ingamename']; $rank = $row['rank']; echo "Name: $name <br> Ingame Name: $ingamename <br> Rank: <b>$rank</b> <br> "; } ?> </div> <style type="text/css"> div.main_footer_block{ border:1px solid #CECECE; width: 960px; margin-left: auto; margin-right: auto; height:49px; background-image:url(templates/tmpl_uni/images/footer_part.png); font-family: Arial; font-size:11px; } div.powered_section { color:#333333; padding-left:10px; padding-top:5px; } div.powered_section a, div.powered_section a:link, div.powered_section a:visited { color: #3333CC; text-decoration: none; } div.powered_section a:hover, div.powered_section a:active { color: #3333CC; text-decoration: underline; } div.logo-section { padding-top:7px; padding-right:10px; text-align:right; } div.license_section { color:#000; padding-left:10px; padding-top:5px; } div.license_section a, div.license_section a:link, div.license_section a:visited { color: #3333CC; text-decoration: none; } div.license_section a:hover, div.license_section a:active { color: #3333CC; text-decoration: underline; } </style> <div class="main_footer_block" style="background: #FFF;"> <table width="100%"> <tbody><tr> <td valign="top"> <div class="powered_section"> Developed by: <a href="mailto:[email protected]">[email protected]</a> </div> <div class="license_section"> Copyright 2009 <a href="#">Clan List</a> © </div> </td> <td valign="top"> <div class="logo-section"> <a href="#"> Logo 156 x 28 here </a> </div> </td> </tr> </tbody></table> </div> </body> </html> <?php } else { echo "Invalid Clan Selected"; } ?>
  18. r u displaying data in these files from Database??? if yes so you dn't need to create files like page02.php, page03.php etc. it can be done in a single file. first let me know u r Displaying data from Database? then i will post he simple and very easy code for pagination.
  19. Yes your method is POST so use $_POST and use if statement instead <?php $code = $_POST['CODE']; if ($code == 91) { $this->do_signature_2(); } ?> Switch is use to select an option from a set of options but if there is one option you can use IF statement. or if switch statement is required so use this <?php $code = $_POST['CODE']; switch ($code) { case 91: $this->do_signature_2(); break; } ?>
  20. yes limit 1 as ngreenwood6 said here is fully explained <?php $query = "SELECT * FROM users ORDER BY id DESC LIMIT 1"; $result = mysql_query($query); $row = mysql_fetch_array($result); $newest_member = $row['username']; ?> Welcome to our newest member <?php echo $$newest_member; ?>
  21. (may b i didn't get u clearly but after having a look at inputs code i found this) all radio inputs steps have same names why r they repeating? use the code this way <tr class="showhide" id="cdiv1" name="cdiv1"> <td> <INPUT TYPE="RADIO" NAME="step0" VALUE="0" <?php echo $chosenstep0; ?>>Just assigned<BR> <INPUT TYPE="RADIO" NAME="step1" VALUE="1" <?php echo $chosenstep1; ?>>Intro Call Made/Info Sent<BR> <INPUT TYPE="RADIO" NAME="step2" VALUE="2" <?php echo $chosenstep2; ?>>Test Data Received and Confirmed (if applicable)<BR> <INPUT TYPE="RADIO" NAME="step3" VALUE="3" <?php echo $chosenstep3; ?>>Live!<BR> </td> </tr> ... examlpe you check a radio then u check second radio option, if this second radio have same name so first radio will be unchecked. use different names
  22. for view.php <?php require_once '../db_connect.php'; //DB connection first! $id = mysql_real_escape_string(trim($_GET['id'])); $sql = "SELECT * FROM users WHERE id=$id" $query_result = query($sql); $row = mysql_fetch_assoc($query_result); view_contact($row); // make sure this function is defined in your file (or included file) ?>
  23. then Edit $message = $_GET['message']; for PHP file OR on (release) { getURL("http://www.3tribes.co.za/3008/3008.php","_blank","POST"); } for Flash
×
×
  • 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.