Im little bit stuck on a logic.scenario is i have a slider where two images are shown at a time taking 50%-50% part of screen,here is the simple html of it,
Get data from regular form inputs alongwith contents in div
I have a little email system on my wordpress site wherein people submit php generated content to me via email. Basically the content is generated within a div and then via a little javascript the div-content is mailed to me. I am skipping the part how it is generated in order to keep the focus on the main iss…
PHP find the days until a date
I have to find the number of days until a date in timestamp format (mysql db) My problem is that if date now is 2013-12-01 09:59:00 the days are 15 while datenow is 2013-12-01 10:01:00 the days are 14. How could I make a difference only of the days without the time? Answer Using the DateTime class: returns
Image in text line is slightly offset
I’m trying to make a clickable button by treating a hyperlink with CSS and adding a little icon next to it. Everything but one detail works great; namely the icons which are slightly offset from the text on the button. It looks as follows: As you may see, the white icons (12x12px) on the buttons are sli…
when it is required that a class will be defined before instantiation?
In the PHP documentation it says: Classes should be defined before instantiation (and in some cases this is a requirement). can some one give me a example of a class that can not be instantiated unless it was previously defined? Answer The parsing rules are the same as for functions: if they’re defined …
cronjob not running with codeigniter
I am sure the answer is right in front of me, but this is driving me crazy. I have searched high and low for the answer and can’t find it. Essentially I am trying to run a script through a cronjob …
PHP Methods and Class Design [closed]
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed last year. Improve this question Which design concept is better in PHP; passing variable to the function…
upload image to my server directory and use the url
I am stuck and really don’t have any idea how can i do this. I want to upload an image to my server root directory. And then i want to use the url of that image. Like I want to use this url in a html page. Which will have no link with my website. anyone clicks that html file
Alternative for define array php
I’m looking for an alternative for define(‘name’, array) as using an array in define gives me this error: Constants may only evaluate to scalar values in … The array I’m mentioning contains strings only. Answer From php.net… The value of the constant; only scalar and null v…
PHP sessions don’t expire. Ever
I’m transferring my application to another server, but I have some issues with the PHP sessions that don’t seem to expire. In php.ini I’ve set: Cookies are enabled, of course. And still, after 5 minutes, if I refresh the page I’m still logged in. Even if I close the browser and reopen …