please, really need help with this problem. I have array of offerDays – $offerDays = array(1,6); (mean Monday, and Saturday); For example, input date is Wednesday 2014/09/03. Next available date for offers is Saturday 2014/09/06 Question: How I can in php determine nearest next day? Something like Answe…
Converting an image into a cartoon using php image magick
Im wondering does anyone know of any good tutorials that can help me learn to convert a human image to a cartoon using php image magick. I have found this link, http://www.fmwconcepts.com/imagemagick/…
Prepared statement inside while loop generated by prepared statement
So I was just wondering if this is a good practice or not, or for some reason does this type of code affect the speed and functionality of a system ? The first statement could generate 50 or more data, that means that another 50 or more statement will be produced, is this bad? Thanks for the answers. Answer E…
How can I use strlen in php for Persian?
I have this code: $string = ‘علی’; echo strlen($string); Since $string has 3 Persian characters, output must be 3 but I get 6. علی has 3 characters. Why my output is 6 ? How can I use strlen() in …
Variable variables in PHP – What is their purpose?
In PHP there’s a functionality officially called “Variable Variables” where one can assign variable variables. A variable variable takes the value of one variable as the name for a new variable! For …
MySQLI Fetch Database Column
I have database table options, where am using it as a dedicated table to store information. I have never heard of this type of table query and have never tried it. I saw on WordPress database so thought to try my own. Here’s database table This is what am trying now This is inside my database class file…
Post message with picture to facebook page/feed using graph api
I’m trying post an a message with one image via facebook graph API, and I can’t. In new documentation https://developers.facebook.com/docs/graph-api/reference/v2.1/user/feed there is no field for an …
Defined route throwing controller method not found laravel 4
I have a route defined in routes.php file but when i make an ajax request from my angular app, i get this error {“error”:{“type”:”Symfony\Component\HttpKernel\Exception\NotFoundHttpException”,”…
How is it possible to run an ftp server, using php?
I would like to host az FTP server on: mywebsite.domain/ftpserver.php The XAMPP server runs on my computer. The php is important, because I would like to authenticate the users using their passwords in the mysql database, and their directory’s name is also stored in the database. Or if there is a free f…
Regex validation matching pattern1 and pattern2 in PHP
I need to match a string against two patterns both patterns must match the string. You could imagine it as some sort of validation chain. Patterns in below code are just examples. I know code below is a possible solution, but I’m interested to know can it be done with one preg_match by joining patterns …