Jump to content

divinedesigns1

Members
  • Posts

    1,200
  • Joined

  • Last visited

Everything posted by divinedesigns1

  1. i mean when i put into the database 10.00 it only displayed the 10 and no i didnt had the option of doing that in the database
  2. if i want to display a price in my database which numeric should i used? i tried decimal but that didn't kept the whole price any help will be appreciated as always
  3. so use the ajax to get the information from the php to then call the ajax in javascript? if i understand correctly, thanks
  4. if I have a PHP function can I call it in a javascript function? I am pulling the information from a database using PHP? or do I have to use java for this?
  5. how can i link a function to a php form so it can run the function on submit i know you have to add the function in the action="" but is there anything i need add to make this work correctly?
  6. hey guys how can i not display the whole like to my include file if its in my admin folder? include "admin/asset/functions.php"; <---- how it is being included at the moment i would like the admin part to not be added, is there a way of doing this?
  7. does anyone have any idea why magento wouldnt display the new theme once you create it? im using 2.2.1 i followed all the steps and nada, if need more information lemme know and ill post the files fyi: no error displayed
  8. I got it working, I also try a similar outcome between a status and its comment and both seem to render find 😄 thanks for the help
  9. this sound way better than what i just did, now i just have to adjust my database to make this work, thank a lot dsonesuk
  10. so i been messing around with php to find a way to generate menus using php *im bored, so yeah better do something* anyway i decided to do it this way function menu() { include "config.php"; $mainMenu = mysqli_query($con, "SELECT * FROM `main-menu`") or die('Error: ' . mysqli_error($con)); if($mainMenu){ ?> <ul> <?php while($mainRow = mysqli_fetch_assoc($mainMenu)){ $menuId = $mainRow['id']; $commonName = $mainRow['actualName']; $menuName = $mainRow['name']; $menuTags = '<li><a href="' . $menuName . '">' . $commonName; echo $menuTags; } // check if there's any submenus $subMenu = mysqli_query($con, "SELECT * FROM `sub-menu` WHERE `sub-id`=$menuId") or die('Error: ' . mysqli_error($con)); if($subMenu){ while($subRow = mysqli_fetch_assoc($subMenu)){ $subId = $subRow['sub-id']; $subName = $subRow['sub-name']; $subConame = $subRow['actualNames']; $subMain = $subRow['main-menu-id']; $actualMenu = '<ul>'; $actualMenu .= '<li><a href="' . $subName . '">' . $subConame . '</li>'; $actualMenu .= '</ul></li>'; echo $actualMenu; } } } ?> </ul> <?php } ?> i was wonder if there is another way of doing this, because im only getting one of the sub menu instead of both of them so currently the menu looks like this Home Services Service 1 it suppose to look like this instead Home Services Service 1 Service 2 any idea of what im doing wrong? as always your response is appreciated greatly
  11. hey so i had this topic up here before but cant find it. does anyone know how i can go about detecting the webpage im on using php?
  12. hey guys, is there a way to style my background image in css to be used on a wordpress website? i try to do this but the background isnt being shown at all once i upload both folder and file if anyone can help with this, it would be greatly appreciated
  13. thanks to your advice i just fixed one of my issues, i appreciate it
  14. i didnt get the chance to read the errors, i had to go get my niece but once i got back in and log on the errors was magically fixed. Have that ever happen to you?
  15. its php error which is weird, because everything was working for a week after i fixed the first set of errors on may 5th
  16. ok, so i created a website for a friend and he send me a email stating that theres errors on the website, so i check it out today and there were errors, so i went and pick up my kid came back log into his websites and there's no errors. is it possible for websites to give random errors and fixed itself?
  17. hey, ok im trying to add the used price of an item within the cart that holds the original price. so i created a duplicated of the original price script so i can add the used price if (isset($_POST['pid'])) { $pid = $_POST['pid']; $wasFound = false; $i = 0; // If the cart session variable is not set or cart array is empty 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', $pid, time() + (86400 * 7)); setcookie('quantity', '1', time() + (86400 * 7)); } else { // RUN IF THE CART HAS AT LEAST ONE ITEM IN IT foreach ($_SESSION["cart_array"] as $each_item) { $i++; while (list($key, $value) = each($each_item)) { if ($key == "item_id" && $value == $pid) { // That item is in cart already so let's adjust its quantity using array_splice() array_splice($_SESSION["cart_array"], $i-1, 1, array(array("item_id" => $pid, "quantity" => $each_item['quantity'] + 1))); setcookie('id', $pid, time() + (86400 * 7)); setcookie('quantity', $each_item['quantity'], time() + (86400 * 7)); $wasFound = true; } // close if condition } // close while loop } // close foreach loop if ($wasFound == false) { array_push($_SESSION["cart_array"], array("item_id" => $pid, "quantity" => 1)); setcookie('id', $pid, time() + (86400 * 7)); setcookie('quantity', $each_item['quantity'], time() + (86400 * 7)); } } header("location: confirm.php"); exit(); } and this is the script for the used price if(isset($_POST['uid'])){ $use = $_POST['uid']; $use_product = $_POST['used']; $i = 0; $wasFound = false; if(!isset($_SESSION['cart_array']) || count($_SESSION['cart_array']) < 1){ $_SESSION['cart_array'] = array(0 => array("item_id" => $use, "quantity" => 1, "price" => $use_product)); header("location: confirm.php"); }else{ foreach($_SESSION['cart_array'] as $each_item){ $i++; while(list($key, $value) = each($each_item)){ if($key == "item_id" && $value == $use){ // that item is in the cart already adject quantity array_splice($_SESSION["cart_array"], $i-1, 1, array(array("item_id" => $use, "quantity" => $each_item["quantity"] + 1, "price" => $use_product))); $wasFound = true; header("location: confirm.php"); } } } // if no item is in the cart if($wasFound == false){ array_push($_SESSION['cart_array'], array("item_id" => $use, "quantity" => 1)); header("location: confirm.php"); } } } I probably dont need both of these script right? and how can i excuted these prices so both can be added to the cart and not just add the same price so pretty much original price is 20 and the used price is 10 but i keep on getting the total of 40 instead of 30 help please, no scripts please
  18. ok so i checked the error log and this is what it keep on saying .htaccess: Invalid command 'php_value', perhaps misspelled or defined by a module not included in the server configuration how would i go about fixing this?
×
×
  • Create New...