php

How do you find out dynamically created checkbox is select/unselect in data grid component in flex?

i created dynamically checkbox on data grid how do i find out Which checkbox select/unselect and which checkbox contact is select/unselect ? Because we cant set dynamic id for each checkbox <mx:DataGrid x="7" y="3" width="347" height="337" dataProvider="{#####}" variableRowHeight="true"> <mx:columns> <mx:DataGridColumn head...

Open-Source Forum with API

Does anyone have suggestions for a PHP, Python, or J2EE-based web forum that has a good API for programmatically creating users and forum topics? Thanks In Advance -J ...

Is XML the best data interchange format when importing large amounts of data as a scripted routine in PHP?

If I have 50,000-100,000 product skus with accompanying information, including specifications and descriptions, that needs to be updated on a regular basis (at least once a day), is XML the best way to go as a data interchange format? The application is written in PHP, and I'm thinking SimpleXML to PHP's native MySQL calls (as opposed to...

Convert If Else to Ternary

Please can someone convert the following to ternary for me? if ($idd == 1521) { return "Home<br /><img src=\"images/b-value.gif\" /><br />Best for Value"; } else if ($idd == 1595) { return "Home<br /><img src=\"images/b-dload.gif\"/><br />Best for Downloads"; } else if ($idd == 1522) { return "Business<br /><img src=\"images/b-value.gi...

How to show which form elements are already selected in PHP

How can I get this code to show which option is already selected? This is basically an edit page and it is pulling info from the database and populating the relative fields I have a drop-down menu, multiple select box, and radio buttons on a page along with some elements. The info is getting displayed in the elements fine, but I can'...

Would I want to throw an exception or an error in this PHP script?

Hi, I have a PHP script that runs database queries. Now, if a query fails, should I trigger an error or throw an exception? I noticed that if I do the latter, the script execution will stop after facing the exception. My code is as follows: if (!$this->connection[0]->query($this->query)) throw new Exception($this->connection[0]->e...

php openid: Why does the library accept some usernames and others cause errors?

Hi, been playing with http://openidenabled.com/php-openid/trunk/examples/consumer and tried the following: flim.blogspot.com flimcc.blogspot.com The first works, the second doesn't. I don't really understand why that is? Cheers flim ...

PHP Pass external download to user

I was wondering if there was any way in PHP to pass an external download off to a user? What I would like to do with the script is depending on certain conditions, send the user a file from server A or server B. However, I don't want the user to know the direct url to either server. Ex: User visits (which is on server C): http://example...

Install PHPUnit and Pear correctly on OSX Leopard

Hey all, I've installed pear using this guide http://t-machine.org/index.php/2008/12/28/how-to-install-pear-on-os-x-105/ In /etc/php.ini my include_path = ".:/usr/local/PEAR" PHPUnit is installed under /usr/local/PEAR/PHPUnit using sudo pear install phpunit/PHPUnit(I get an error otherwise) Yet when I try execute phpunit I'm getting ...

Debugger Error

I'm using tsWebEditor with xDebug and one of two errors pops up every minute or two even when I am not debugging and even when there are no files open for editing. Exception from Debugger: Connection reset by peer Exception from Debugger: xdebug did not return a valid length([|]) The "[|]" character is an unidentifiable character that...

Spidering through ams for associate emails

So I have a client that wants to spider through sites that he is a member of and collect participating members emails. Is there commercial software that does that, or am I better off writing a screen scraping script? This is all assuming that this is permitted at the sites in question of course. ...

How can I split a string if it is a MS-DOS type path OR Unix type path?

I have a string that represents a path to a directory. I want split the string if it is a unix type path or a ms-dos type path. How can this be done? For example: <?php $a = some_path1/some_path2/some_path3; // unix type path $b = some_path1\some_path2\some_path3; // MS-DOS type path $foo = preg_split("something", $a); // what rege...

dynamically hiding a portion of a HTML table

I have a table of data from mysql rendered on page via PHP into a HTML table. Within this table of data, I have a row of data that should be focussed on (let's call it) row X. I want the 2 rows above and below row X to be shown but all others hidden, as row X moves up and down, this would change (obviously) what was hidden, when row X...

How can I select from a derived table in Propel?

I'm using v1.3 of the Propel PHP framework for an application, and I can't find a way to select from a derived table using the Criteria object. Part of the SQL I want is: SELECT unioned_table.foo, quux.stuff, baz.more_stuff... FROM quux INNER JOIN (SELECT foo, bar FROM table1 UNION SELECT foo, bar FROM table2 ) AS union...

How to toggle a div based upon the radio type selection?

Hi I toggle a div using something like this - <input type="radio" name="myRadio" value="myDiv_1" />MyDiv <input type="radio" name="myRadio" value="myDiv_2" />MyDiv2 <input type="radio" name="myRadio" value="myDiv_3" />MyDiv3 <div id="myDiv_1"> 1 Some input fields, text </div> <div id="myDiv_2"> 2 More input fields, text </div> <div i...

PHP in_array not working

Hey everyone, I am using the PHP in_array() function in order to authenticate (with sessions) if a user can access a particular page. For some reason, it is not working... PHP PAGE session_start(); require_once('../scripts/functions.php'); $role_auth = @$_SESSION['role_auth']; access($role_auth, array(0,1,2,3,4)); access FUNCTION ...

Grouping radio buttons in Zend Framework

I want to present radio buttons in logical products groups: Broadband products: (*) 2 Mbit ( ) 4 Mbit Voice products: ( ) Standard ( ) Total Bundles: ( ) 4 Mbit + Standard ( ) 4 Mbit + Total All radio buttons have the same name attribute - you get the idea. It seems that Zend Framework 1.8 does not support grouping radio...

Are these generation times acceptable for php-mysql? Where can I improve? Where should I improve?

I'm in the process of developing my first major project. It's a light-weight content management system. I have developed all of my own framework for the project. I'm sure that will attract many flames, and a few 'tut-tut's, but it seems to be doing quite well so far. I'm seeing page generation times of anywhere from 5-15 milliseconds. ...

Stop Post Data From Different Domain PHP

I'm a beginner in PHP. What I'm trying to do is stop Post Data coming from another webpage. The problem I am having is let's say someone copies my form and pastes it in their website. I want to be able to stop that Post Data from running the script on my email form. How can I do this? Let me know if I'm not being clear enough. My PH...

How to determine the first and last iteration in a foreach loop?

Hi, I have three tables in a MySQL database. collection category subcategory I use the following function to retrieve data from these tables to display as a tree: function create_menu($params) { //retrieve menu items //get collection $collection = get('xxcollection') ; foreach($collection as $c) { ...