Looking for a script to display a number of different time (zones) on a site - flash can do this but has become obsolete due to Apple and the Javascripts I have found all miss the daylight savings adjustment functionality.
Script/plugin needs to be un-styled for site branding purposes. Site = PHP
...
I am working within the confines of a php based CMS like system, which defines custom form fields that can be used when making a new page.
I have two tables in my database, one called people, which has three fields, firstname, middlename and lastname, and a second table called orders, which also has firstname, middlename and lastname fi...
For example I have a menu item named Categories and under that I have 10 different sub categories. So the url currently would be something like this:
http://domain/categories
http://domain/categories/sub1
http://domain/categories/sub2
...etc
I want to do something if the url is on categories regardless of what sub categories it is in....
Hi,
I am developing a web site for the storage of electrocardiograms (ECGs) for research purposes.
The ECGs come in two different XML-formats. In format A the waveform data is stored as text and can easily be converted into a human readable ECG, but in format B the waveform data is encoded in a way I cannot decode, but I think it might...
I have a large(ish) COM object that works as the back end of my PHP application. Every time i refresh the page, PHP creates a new object of the COM interface. This is however slow.
Is there any way to serialize/cache the COM object so that I can access the already initialized object? Or is there maybe some other workaround. I would also...
I have a google suggest type of input field, which displays records)the result of an SQL query) as I type input. I can then select one, and what I select becomes the content of that field.
I would like to know how to push the content of that variable back to my PHP form using jquery.
I am working in the confines of phpBMS, a type of CM...
Hi this is my array
Array ( [0] => Array ( [0] => 21.2694 USD ) [1] => Array ( [0] => 21.2694 USD ) )
(this is basicall google currency converter)
echo $arr[0][0]; //output is 21.2694 usd
But i want Output like 21.26 USD
What is tried is ,
echo substr($arr[0][0],0,5);//For this substr line i expected output is 21.26
But am getti...
Dear All,
as many of us is aware is possible to dowload youtube videos using AnyVideo converter or any similar software. The basic mechanism is that, when bufering a video, a set of images is sent to the client machine, that's because youtube videos are in flash format. Not sure which format, .f4v, 4fp . I assume is .f4v rather than .4f...
Hi guys, I have a facebook iframe application that is having trouble redirecting, I keep getting security certificate errors like these "Content was blocked because it was not signed by a valid security certificate.", here is the redirect code,
$params = array(
'canvas'=>1,
'fbconnect'=>0,
'req_perms'=>'user_photos,publish_s...
Hi frnds can anyone tel me how to Create a Zip File Using PHP?
Actually i am having 10 files with boxes,if i select more than one check box that files should get zip/rar and i am able to save that in some path..
Please can anyone help in this solution as i am new to php
...
Hi, I am trying to crop an image using Jcrop, I want this functionality in Jquery UI dialog box. I tried as suggested but its not working at all. Please Help.
Thanks
...
I am using a CMS-like system, phpBMS, which defines certain fields and ways to generate a form.
Here is the sample form provided. It is possible to include javascript files and incorporate script into the form as well.
I would like to know if it is possible, within the confines of the framework I am working with, to send additional dat...
I'm building a Curl web automation app and am having some issue with not getting the desired outcome of my POST action, I am having some trouble figuring out how I can show the full POST request I am sending over (with headers), I have been searching on this but everything that comes up is the response headers, actually I want these too ...
Hi
I'm trying to retrieve a url sent in the query strings in a codeigniter function:
function recipe($url = ''){
$url = $this->uri->uri_string();
$url = ltrim($url, '/bookmarklet/recipe/');
log_message('info', 'URL: ' . rawurldecode($url));
However for some reason the url is always missing a '/' in the h...
Dear all,
I would like to make my website to allow only one session at a time. For example, let say user has login to my website on firefox, if the user login again to another browser like opera on the same computer or different computer, the session on firefox will be destroyed. However, the session on firefox remained if it remains a...
i have written validation class. now, is it ok to extend a form class from the validation class? or even extending the validation class from the request class?
i'm just not sure how to implement the registration process for a new user in a mvc. totally confuse.
Edit: i have found this zend tut here:
// application/controllers/Guestboo...
I'm trying to make Zend Debugger run on my Wamp server on Windows Vista.
Here are steps, which I folowed:
Download ZendDebugger-5.2.15-cygwin_nt-i386.zip from http://downloads.zend.com/pdt/server-debugger/
Copy \ZendDebugger-5.2.15RC1-cygwin_nt-i386\5_2_x_nts_comp\ZendDebugger.dll to c:\wamp\bin\php\php5.3.0\ext\ZendDebugger.dll
Edit ...
I am posting some form values through ajax to a PHP script. The PHP echoes 1 if it's successful and 2 if not.
The PHP seems to be working ok but I am being redirected to the url in the javascript and shown the number 1 on a blank page instead of it being echoed back to the ajax request.
This is my javascript, can anyone see where I am ...
Hello
I am using Joomla as CMS. Right now there is No plugin that enables windows live logins.
I already downlaoded the windows live ID SDK.
The PHP sample works well but I need to make some changes.
I want to have credentials to be checked without being redirected to http://login.live.com! I just need a background check which returns...
Hy there. I need to implement cache for my PHP web application. I implemented the cache file control (saving and getting files from cache dir) but now I need to enforce cache folder max size control, because cache folder should be limited in max size.
I had an idea to limit the size by deleting the least used files when the space is nee...