Jump to content
Larry Ullman's Book Forums

electric-fire

Members
  • Posts

    9
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by electric-fire

  1. I've found that in order for the following line of code from script 13.1 - email.php to work $value = str_replace(array("\r", "\n", "%0a", "%0d"), ' ', $value); the \r and \n should be escaped like so: $value = str_replace(array("\\r", "\\n", "%0a", "%0d"), ' ', $value); Otherwise they won't be replaced.
  2. Sorry for the long delay, I haven't had an opportunity to try it on a live web hosting with the search engine yet, but I just managed to make a related task: Leaving the Cyrillic and Latin characters, numbers, dots, dashes, and spaces intact in a string, while replacing any other characters with an underscore. The 1st link: http://php.net//manual/en/regexp.reference.unicode.php was of help! Here is the code: $modified_filename = preg_replace("/[^\\s\\p{L}0-9 .-]/u", "_", $filename); Thanks again.
  3. Hi, I was learning the code on creating a search engine, that accompanies this book from here: http://www.peachpit.com/articles/article.aspx?p=1802754&seqNum=4 and encountered an issue in the se_index.php file. Everything worked fine until I tryed cyrillic characters, the preg_match_all('/\b\w+\b/', $content, $output) function didn't allow them to get through: After researching the net I fount the solution adding the u caracter for unicode like this: preg_match_all('/\b\w+\b/u', $content, $output); and it worked on the localhost with LAMPP. Recently I tried to index a website on a shared hosting that runs PHP-5.2.17, and the same method that worked on the localhost, didn't with cyrillic there. I also tryed preg_match_all('/\b\[a-zA-Z\p{Cyrillic}0-9]+\b/u', $content, $output); and other combinations of regular expressions with the \p{Cyrillic} but nothing worked so far. If anybody has knowlege how to solve this issue, please give me a note, thanks.
  4. Thank you for your help, here is the code: <?php // This file allows the administrator to view a specific order. // The administrator can also mark order items as shipped. // Require the configuration before any PHP code as configuration controls error reporting. require ('../includes/config.inc.php'); // Set the page title and include the header: $page_title = 'Просмотр заказа'; include ('./includes/header.html'); // The header file begins the session. // Validate the order ID: $order_id = false; if (isset($_GET['oid']) && (filter_var($_GET['oid'], FILTER_VALIDATE_INT, array('min_range' => 1))) ) { // First access $order_id = $_GET['oid']; $_SESSION['order_id'] = $order_id; } elseif (isset($_SESSION['order_id']) && (filter_var($_SESSION['order_id'], FILTER_VALIDATE_INT, array('min_range' => 1))) ) { $order_id = $_SESSION['order_id']; } // Stop the page if the $order_id is not valid: if(!$order_id) { echo '<h3>Ошибка!</h3><p>Эта страница была открыта ошибочно.</p>'; include ('./includes/footer.html'); exit(); /* If the page does not have a valid order ID, there's no point in continuing. An error will be printed, the footer included, and the script terminated. */ } // Require the database connection: require(MYSQL); if ($_SERVER['REQUEST_METHOD'] == 'POST') { // Update the order_contents table: $q = "UPDATE order_contents SET ship_date=NOW() WHERE order_id=$order_id"; $r = mysqli_query($dbc, $q); } // End of the submission IF. // Define and execute the query: $q = 'SELECT total, DATE_FORMAT(order_date, "%a %b %e, %Y at %h:%i%p") AS od, email, cus.name, CONCAT_WS(", ", district, city, address1, address2) AS address, phone, customer_id, CONCAT_WS(" - ", c.category, p.name) AS item, quantity, price_per, DATE_FORMAT(ship_date, "%b %e, %Y") AS sd, file_name, cat_file_name, CONCAT("O", p.id) AS sku FROM orders AS ord INNER JOIN customers AS cus ON (ord.customer_id=cus.id) INNER JOIN order_contents AS oc ON (oc.order_id=ord.id) INNER JOIN products as p ON (oc.product_id=p.id) INNER JOIN categories as c ON (c.id=p.category_id) WHERE ord.id=' . $order_id; // Execute the query: $r = mysqli_query($dbc, $q); // If rows were returned, start a form: if(mysqli_num_rows($r) > 0) { // Display the order info: echo '<h3>Заказ:</h3> <form action="view_order.php" method="post" accept-charset="utf-8"> <fieldset>'; // I had to hack and put the ?oid=' . $order_id . ' above, because for some reason the $_SESSION['order_id'] loses its value when the page is reloaded. // The form posts back to this same page and only contains, as written, // a submit button. // Fetch the first returned row and display the general information: $row = mysqli_fetch_array($r, MYSQLI_ASSOC); echo "<p><strong>Номер заказа</strong>: $order_id<br /> <strong>Общая сумма</strong>: {$row['total']}руб.<br /> <strong>Дата заказа (the US time)</strong>: {$row['od']}<br /> <strong>Имя клиента</strong>: {$row['name']}<br /> <strong>Адрес клиента</strong>: {$row['address']}<br /> <strong>Тел.</strong>: {$row['phone']}<br /> <strong>email</strong>: {$row['email']} </p>"; // Create the table: echo '<table border="0" width="100%" cellspacing="2" cellpadding="2"> <thead> <tr> <th align="center">Единица товара</th> <th align="right">Цена</th> <th align="center">Кол-во</th> <th align="center">Доставлен?</th> </tr> </thead> <tbody>'; // For confirming that the order has shipped: $shipped = true; // Print each item: do { echo '<tr> <td align="left"><a title="Просматреть товар в новой вкладке - URL: ' . $row['file_name'] . '" target="_blank" href="' . BASE_URL . 'catalog/' . $row['cat_file_name'] . '#' . $row['sku'] . '">' . $row['item'] . '</a></td> <td align="right">' . $row['price_per'] . '</td> <td align="center">' . $row['quantity'] . '</td> <td align="center">' . $row['sd'] . '</td> </tr>'; // Update the shipping status: if (!$row['sd']) $shipped = false; // if $row['sd'] is NULL (for any item in the order), // then the entire order has not been shipped yet, and the flag variable should // indicate such. } while ($row = mysqli_fetch_array($r)); echo '</tbody></table>'; // If the order hasn't entirely shipped, create the submit button: if(!$shipped) { echo '<div class="field"><input type="submit" value="Заказ доставлен" class="button" /></div>'; // For orders that have completely shipped, no submit button will exist. } echo '</fieldset> </form>'; } else { // Complete the mysqli_num_rows() conditional: // No records returned: echo '<h3>Ошибка!</h3><p>Данная страница была открыта из-за ошибки</p>'; include('./includes/footer.html'); exit(); } include ('./includes/footer.html'); ?>
  5. Hi, I encountered a bug when using the 'view_order.php?oid=x' page (page #344 in the book), first time it loads, everything works fine and the $_SESSION['order_id'] is assigned the right value, after I click on the 'Ship This Order' button the page reloads itself and the URL becomes just the 'view_order.php' so the script should use 'elseif (isset($_SESSION['order_id'])' to assign '$order_id = $_SESSION['order_id'], but it doesn't, because for some reason the '($_SESSION['order_id'])' loses its value. I rechecked everything many times and there's no any mistake in my code here. And logic in the code is clear and obviously right. Meanwhile I found a workaround by modifying the <form action="view_order.php"... to <form action=" to view_order.php?oid=' . $order_id . '"..., so instead of the session the script uses $_GET['oid'] method and it works. But anyway I'd like to know if there's something I could tweak to make the session work in this file. P.S. I didn't have any problems using sessions when I was redirecting the user from the checkout.php to the billing.php and so on. The view_order.php doesn't jump from https to http or www. and the session_start(); function is always in the header.html Thanks in advance.
  6. Hello I was following all the instruction in the book and built the coffee shop website in english without too much trouble. But now when I decided to create a similar website and use Russian language to fill the content, I've got an issue error 404 message when opening a product page (the browse.php file). So here is the full explanation: First I go to the home page: http://localhost/stroymateriali/ And click on the list of categories: http://localhost/stroymateriali/shop/standalones/ Next when I try to open a list of products in this category http://localhost/stroymateriali/browse/standalones/замки+внутренние/1 I have "Object not found!" error 404 message. But if I rename the category from 'замки внутренние' to 'zamki vnutrenie' the same phrase written using Latin letters everything starts to work, I have the following URL instead: http://localhost/stroymateriali/browse/standalones/zamki+vnutrenie/1 The problem is that the name of the category must be written only with Russian letters in order for a website to be readable by Russians. If someone knows a solution, please help me on this problem. Thank you
×
×
  • Create New...