- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
11 Posted Topics
make sure the `dateColumn` is indexed properly and since the `eID` value is enclosed in quotes, I am assuming its a string, so make sure that column is indexed as well. > Replace NOW() with your date. For the week: > > SELECT * FROM mydb.mytable > WHERE eID='$eid' AND …
[Currency.js](https://currency.js.org/) also works very well for this
This is just an initial observation / question, but why are you running every step through rawurlencode? Look at the definition of the function - every time you run it on a string it will encode everything non numeric except -_.~ ... so if you run it once and it …
Agree with Biiim, you need to loop through the results. example below. note I took the body out of the loop. <?php /*error_reporting(E_ALL); ini_set('display_errors', 1);*/ $CustomerName = $_GET['customername']; //echo htmlentities($CustomerName); $sql = "SELECT tblorders.InvoiceNumber, tblorders.LorryName, tblorders.CustomerName, tblorders.DeliveryDate, tblorders.PaymentMode, tblorders.DeliveryMethod, GROUP_CONCAT(CONCAT(tblorders.Quantity, ' of ', tblproducts.ProductName) SEPARATOR ', ') AS productnames, tblorders.InvoiceGenDate …
In whatever code language is running on the server, use a well known database library that is well documented and features XSS aka sql injection prevention.
it's complaining the index "gambarvk_image" is not defined on line 821 which is code we can't see. I assume that the HTML form file input field is not named exactly "gambarvk_image" or maybe is named "gambarvk_image[]" or some variant or the form is not the right encoding. So check that …
I agree with everyone else, you can never prevent downloading, since the browser has to download, but you can make it harder for people to save and re-use the images. Here's a PHP script using standard PHP GD library, nothing special. It will break the image down into small chunks …
From watching the video, I am understanding your question to be > Why does the application load so slowly in the browser? So, judging from the task manager, I am going to assume you are using a laptop (since it has a dual core processor with 8gb of ram) and …
First your htaccess rules are written to NOT redirect index.php The rules are: If the request filename (index.php) is not a file and is not a directory then redirect to index.php. Well obviously index.php is a file, so your conditions don't apply. Also you have 2 things to worry about, …
I'm assuming you are using some sort of Javascript Ajax click event to call a url that PHP routes to this function `contractor_email_details` If that's the case, and you are simply passing the ID in the url like for instance: /url/php_page.php?id=X Then the variable `$data` in the function variables is …
try zoho crm
The End.
gottaloveit