Jump to content

divinedesigns1

Members
  • Posts

    1,200
  • Joined

  • Last visited

Everything posted by divinedesigns1

  1. ok, so i have to launch this website but cant do so, due to this 500 internal server error, i contacted the person that is hosting the website and he seem to not have any idea on how to fixed this problem. I am using html5 document to created this website, it is consist of php, css, css3, js, etc. can anyone give some advice on how to fixed this problem? website is displayed below www.mailmyjamz.com
  2. ok so i started off with a radio button well two radio buttons to be exact, and i keep on having this issue but i check to make sure i didnt misspelled anything and so on but i still getting this same problem, also when i click on the one of the radio buttons it works heres the error Notice: Undefined index: position in D:\wamp\www\Website\admin\testing.php on line 65 and this is the code for the above issue if(isset($_POST['submit'])){ // define the variables $Title = $_POST['title']; $Detail = $_POST['description']; $Position = $_POST['position']; echo $Position; // define the error too $errors = array(); // now sanitized please $Title = strip_tags(trim($Title)); $Detail = strip_tags(trim($Detail)); $Title = preg_match("/^[a-zA-Z0-9]*$/", $Title); $Detail = preg_match("/^[a-zA-Z0-9]*$/", $Detail); // now lets see if its empty if(empty($Title) && empty($Detail) && empty($Position)){ $errors[] = 'All Fields Are Required'; } foreach($errors as $error){ echo $error; } } echo '<form action="testing.php" method="POST" enctype="multipart/form-data"> <input type="text" name="title" value=""> <textarea name="description" col="8" row="24"></textarea> <input type="radio" name="position" value="a">Main Position <input type="radio" name="position" value="b">Second Position <input type="submit" name="submit" value="Save"> </form>'; any tip or advice on this one?
  3. whats spaceship operator? that part throw me off completely
  4. this keep on coming up as a virus everytime i click on it
  5. you know i did that first lol then i change it to variables, ill try that and see what happens
  6. then ill just leave it as a session, because thats the only issue that is stopping it from working
  7. now im having these errors where the setcookie is, Warning : Cookie names cannot contain any of the following '=,; \t\r\n\013\014' in /home/content/14/8709614/html/ddsnet/functions.php on line 222 Warning : Cannot modify header information - headers already sent by (output started at /home/content/14/8709614/html/ddsnet/cart.php:39) in /home/content/14/8709614/html/ddsnet/functions.php im looking it up at the moment, but it makes no sense since thats where the setcookies are foreach($_SESSION['cart_array'] as $each_item){ $item = $each_item['id']; @$item_price = $each_item['price']; // get the item information $st_sql = mysqli_query($con, "SELECT * FROM products WHERE id='$item' LIMIT 0, 1") or die('Error: ' . mysqli_error($con)); while($row = mysqli_fetch_array($st_sql)){ $pname = $row['pname']; $price = $row['Proprice']; $usedprice = $row['usedPrice']; $image = $row['id'] . '.' . $row['ext']; $detail = $row['idetail']; $_SESSION['item_name'] = $pname; $_SESSION['item_price'] = $price; $_SESSION['item_usedprice'] = $usedprice; $_SESSION['item_detail'] = $detail; setcookie($pname, $pname, time() + (86400 * 7)); setcookie($price, $price, time() + (86400 * 7)); setcookie($usedprice, $usedprice, time() + (86400 * 7)); setcookie($detail, $detail, time() + (86400 * 7)); } im lost on this one, hint tips advice will do
  8. how can i make this code work with cookie? I would like it to last longer with the cookies, the session only last for a short period of time if (!isset($_SESSION["cart_array"]) || count($_SESSION["cart_array"]) < 1) { // RUN IF THE CART IS EMPTY OR NOT SET $_SESSION["cart_array"] = array(0 => array("item_id" => $pid, "quantity" => 1)); setcookie("id", $_SESSION["cart_array"], strtotime( '+1 day' ), "/", "", "", TRUE); setcookie("quantity", "1", strtotime( '+1 day minute' ), "/", "", "", TRUE); } any tips, hints or advice are acceptable as always. HELP PLEASE
  9. ok I have this code, that I need to have change ones the album is selected in PHP. So pretty much this is the part I need to change var tracks = { "track1":["Fast Lane", "fast_lane"], "track2":["Breathe", "breathe"], "track3":["Stranglehold", "stranglehold"] }; im trying to get those tracks to be automatically be placed in javascript instead of having it being placed there manually, i know i need ajax to do this, can anyone give me a hint on exactly what i need to be doing?
  10. thanks dsone that fixed it, i gotta keep that in mind for the next website
  11. thanks, ill keep this in mind next time i do this
  12. so i finish this website and now I'm double checking it because the client kept saying it wasn't working on his devices, so I check it on all browser and everything was working good, I had to fix the opera font sized. now on the IE browser *I don't use IE at all* the 768 and below screen sizes for the item details page is all messed up, fonts size is overlapping the price etc. is there a way to fixed this issue without having to mess with the CSS codes itself? oh yeah, this is the website www.divinedesigns1.net/ddsnet tips, hints, etc are always welcome
  13. give me your honest feedback on this website www.divinedesigns1.net/ddsnet if the above url doesnt work, let me know so i can get it back online, it should be working tho, as of 2/16/2016 8:33pm i would like only your honest opinion
  14. thanks alrite ill try that and get back at you, i appreciate the help on this one
  15. nope there's no error in the code, it works perfectly find, im just trying to add the used price to the code, which is an additional edit to the original code
  16. sorry about that, at the time i didnt had the code with me so i just posted the question instead, the code is there now,
  17. it suppose to be in that green circle of the shopping cart image
  18. alrite, ill create some smaller images, but you see where the shopping cart is located, theres a div which holds the amount of items within the cart
×
×
  • Create New...