php

How to get the return from php to javascript?

Hi All, i am having an php code for verification of User in XML For Eg: ValLogin.php <?php $userName = $_REQUEST["username"]; $password = $_REQUEST["password"]; $iCount = 0; $loginArray = array(); $xml = simplexml_load_file("Logintest.xml"); for ($i=0;$i<2;$i++) { foreach($xml->Username[$i]->attributes() as $a => $b) { $...

How to convert Unicode NCR form to its original form in PHP?

To avoid "monster characters", I choose Unicode NCR form to store non-English characters in database (MySQL). Yet, the PDF plugin I use (FPDF) do not accept Unicode NCR form as a correct format; it displays the data directly like: &#36889;&#20491;&#19968;&#20491;&#20363;&#23376; but I want it to display like: 這個一個例子 Is there any met...

cURL php extension for windows with SCP and SFTP support

I switched over to zendserver(VS8 php(5.3) binaries), and now curl(7.19.4) seems to be lacking SCP and SFTP protocol support(verified by errors and phpinfo). Curl itself is installed correctly, it's just lacking the protocol support mentioned. This worked out of the box on the VC9(thread safe) binaries I downloaded off php.net(this ins...

How to display multiple values using php and mysql?

How can you display multiple values from the same mysql field using php and mysql Here is the code I have already <?php if(!empty($skill) || !empty($years) || !empty($rating)){ if (!empty($skill)) { echo '<p>' . $skill . '</p>'; } if (!empty($years)) { echo '<p>' . $years . '</p>'; } if (!empty($rating)) { echo '<p>' . $r...

Performance with php and mysql

Hi, I'm developing a site and I have some doubts about the best approach to query the database. In general, when I load a page, several data has to be fetched from the database. I'm not sure if I'm doing it the best way. So right now and as an example I call the following functions when the page is rendered: (...) (a) -> getAuthorName(...

Codeigniter SQL query

Hi there I am trying to do a COUNT that has WHERE clauses in it, the code I am using is function count_tasks($userId) { $this->db->count_all('tasks'); $this->db->where('tasksAssignedTo', $userId); $query = $this->db->where('taskPriority_taskPriorityId !=', 6); return $query; However Codeigniter only seems to be running the foll...

mysql & php - query for record with all or fewer values, but not more

(SOLVED, SEE END) I need hints on the PHP or MySQL code structure for the following: Let's say you have X unique boxes, and Y types of fruit. Each box can contain one of each type of fruit. Some boxes might have only 2 types, some might have every type. All boxes have at least one type. For the query, the user has a list of checkboxe...

Joomla Events Override

Hi, Is it possible for plugins to block System Events in Joomla? I'm currently using a url rewriting plugin and the onAfterRoute event does not seem to be called (which I need for another plugin) Thanks ...

How to find all image tags using Regular Expressions

I need to find all the image html tags that are included in a page using PHP regular expressions Example <img src="images/image.jpg" /> My code preg_match('/<img src=\"images\/.*/',$tags,$matches); The strange thing is it only finds the first occurence, not the rest of the tags in the page ...

PHP Comand line script to create user passwd

hey all, I'm very new to linux and php so forgive me if this is a dumb question. I need to create a php command line script that will add a user to the system, to be used by the ftp server. I have it set up at this point that it creates the account just fine. The problem I'm facing is that even though I pass through the password when I ...

Problem with include on my Drupal

Hello again! I have a problem with 3rd-party-system integration in my drupal site. Sorry for my english, i'm from russia, but i will try to explain my problem well. Integration idea: 2 .php files 2 php-script lines (include function's) The problem is: this scripts call to outside perl (.pl) script. Perl script read the paramet...

PHP runtime class modification

So I want to be able to add/remove class methods at runtime. Before you tell me that's horrible pratice in oop, it might be, but I don't really care. The reason I want to be able to do this is because I want the application to be very modular, so some plugin could extend some base class and add methods to it without killing the the main ...

Is it possible to save a word file in MYSQL database and to view the content "AS IT LOOKS" in the Browser.

Hi all, For example, i am uploading a word file with some FORMATTED contents in the database. The content in the word document is aligned. I done up to the above level . My issue is how can i able to view the CONTENTS AS IT LOOKS EXACTLY (means the exact formatted contents) IN A BROWSER. Kindly help me out of this issue. Thanks in Ad...

IDE capable of saving to two locations and a SVN repo?

I’m just wondering if anyone’s come across or could recommend an IDE that’s capable of the following: Key requirements: Save to two locations as a part of the normal save operation. (Local or network drive and a web server dev box.) Subversion integration (in addition to the above). Windows based Code highlighting (and ideally functio...

MySql and PHP Question?

I was wondering if i had a mysql field named names that had many names in the same field that a user can pull from it how should my field be setup? For example if the user entered about 20 names into the same name field how should my mysql table be setup if my table is not set up correctly. And how can I display each 20 names from the ...

PHP function confusion

I have the following scenario (simplified): function changeFruit($fruit) { changeAgain($fruit); } function changeAgain($fruit) { $fruit = "Orange"; } MAIN: $fruit = "Apple"; changeFruit($fruit); echo $fruit // Will show up as "Apple", How do I get it to show up as "Orange"?? EDIT: FORGOT TO ADD. THE SCENARIO CANNOT USE RE...

What do scale and inflate do in the ImageMagick file resizer class

I am using ImageMagick via Symfony to resize images in PHP. The sfThumbnailer class uses 'scale' and 'inflate' parameters to interface with ImageMagick. What do they do and how will they affect my results? I realise this is a RTFM question, but I already have, and the documentation is not clear. Image Magick Documentation Symfony Thu...

Free, Lightweight PHP e-Commerce solution

I'm searching for a lightweight e-Commerce web-application implemented in PHP5 and using MySQL as storage db. main requirements are: as small as possible Free or Open Source supporting multi-language (best if utf-8 was primarily supported) easy to use (don't need core to be bloated with functionality I won't use) basic system for sett...

Can one create Apache hooks with PHP?

I have googled the topic for a while but haven't found what I'm looking for... Is there a mod for PHP that allows it to act much like mod_wsgi or mod_python so that one can create Apache hooks using PHP? For example an equivalent to WSGIAccesScript? Thank you ...

How do I test for multiple exceptions with PHPUnit?

When testing for exceptions with PHPUnit, what is the best way to require that every statement or assertion must throw an exception in order for the test to pass? I basically want to do something like this: public function testExceptions() { $this->setExpectedException('Exception'); foo(-1); //throws exception foo(1); //d...