PHP 5.3.3 marks the end of life for PHP 5.2, and many users are having to change their code to cope with deprecated features.

learn more… | top users | synonyms

0
votes
2answers
30 views

How to return a multidimensional array keys as a tree?

I am working on an MLM application in which i need to show all users as a tree. For this is implemented parent child relationship among the users. my table structure is here :- I had retrieve the ...
-1
votes
3answers
30 views

joining two tables and fetching values from them error

i am joining the two tables but is giving me error that mysql_fetch_array() expects parameter 1 to be resource, <?php $result=mysql_query("SELECT * FROM `photo_gallery`.`photographs` WHERE ...
0
votes
0answers
14 views

Typo3 scheduler class not found

I am trying to get a scheduler class running on typo3. ext_autoload.php: $extensionPath = t3lib_extMgm::extPath('mh_compass'); $loaderClass = array( 'tx_monitorcompassdailyreset_sched' => ...
0
votes
0answers
18 views

Sending multiple data to PHP from select option in HTML

I want to know if we can send multiple data to php from select option in HTML ? I am looking for a value to pass in hidden within the select option tag and my select option tag is within a loop, so I ...
0
votes
0answers
33 views

How to measure data traffic and data storage? [closed]

I need to measure data traffic and data storage of my website, I'm hosted on Amazon, and it's hard to get some reports of this to feed my system, and I want to charge by traffic and storage. I want ...
-3
votes
0answers
37 views

PHP: Possible Class for filtering Phone Numbers for view? [closed]

I have a great function in place already. It removes all characters. Removes leading 1's (not necessary as we already know 1 for the US since we're in the US). And even formats 10 digit (assuming they ...
0
votes
1answer
13 views

Access properties of object

I have an object that looks like this in PHP 5 when returned from var_dump($result); : object(stdClass)#4 (1) { ["pong"]=> object(stdClass)#5 (1) { ["message"]=> string(9) "It ...
-2
votes
0answers
17 views

PHP SYNTAX ERRORS IN 5.3 VERSION

I have some errors in this php file >>this is a script used to add tv channels in an integrated admin interface<< I NEED AN EXPERT TO TELL ME IF IT COULD BE FIXED AND SUGGESTIONS WILL BE ...
-2
votes
6answers
53 views

where's the error in this simple code? [closed]

where could the error be ???? on line 24 and dont see anything.. could anyone pinpoint the error ?? it would be so appreciated... It says the error is on line 24 the error message Parse error: ...
-5
votes
4answers
67 views

PHP won't run the select query [closed]

PHP won't run the select query even though it's connected to the database <?php $con = mysql_connect("localhost","root","","test"); if (!$con) { die('Could not connect: ' . ...
0
votes
1answer
21 views

XML parsing slows down

I am trying to read a pricelist and stocklist via the product code (that comes from a database table too) from xml files and puts the result into a MySQL table. Everything is OK except the response ...
1
vote
2answers
38 views

mysql FOUND_ROWS() return wrong value

I'm trying to use FOUND_ROWS() in my query, but the function returns wrong values sometimes. SELECT SQL_CALC_FOUND_ROWS adminslog.*, admins.fullName FROM adminslog JOIN admins ON ...
0
votes
1answer
18 views

online server wont show string values

i have this code, where i get an array and make it a string, on my localhost show the values correctly (1,2...) but on my online server shows (,,) no numbers, just the commas. Does someone know what ...
-1
votes
1answer
21 views

passing array to string not ok [duplicate]

i have this script and im having a problem passing this array to a string with commas. i want it to be a string so i can insert it as a variable inside another query in the select...where... ...
-6
votes
0answers
32 views

get data from database and make an array [closed]

i want to get multiple ids from a database as an array and then make it a string with commas like (1,2,..). Does someone has the code to do this or can explain me how to? <?php example ...
-1
votes
1answer
41 views

making an array from database [closed]

I'm going crazy with this issue, I want to get an array separated by commas(string) like example:(1,2,4,6) from a database and insert this as a variable inside a query like(select from table where id ...
0
votes
1answer
36 views

php array to string not working online server

I have a problem. I have an array of values from database, when I try to pass it to a string with commas, it works fine on my localhost, but when I upload it to my online server, the string doesn't ...
0
votes
0answers
13 views

Able to sign in with my gmail account but not able to retrieve token for accessing google contacts to the my application

The below code works fine for me it returns valid id.. Now i want to retrieve token for retrieve my google contact can anyone help me how oauth process can possible with this id.. public function ...
0
votes
2answers
39 views

DateTime not responding on server change

I recently migrated a site from a shared hosting to a Virtual Private Server. On the shared hosting I had PHP 5.2, and on the VPS I have PHP 5.3.3. After this migration the DateTime class stopped ...
0
votes
0answers
13 views

Symfony wont release the RAM it consumed, even after every thing is finished

We have a symfony app which consume lot of RAM(8GB) and CPU as well. The problem is, even after everything is finished, it holds the memory without releasing. It will release the memory after ...
0
votes
1answer
50 views

How to get an access token using Google's OpenID+OAuth hybrid protocol?

I've been spending some time trying to get my web app set up to use this method of authentication, but it really seems like there aren't any examples out there, and the documentation is sparse, ...
0
votes
2answers
34 views

symfony render a template/partial in a form

I am trying to render a template in a form using the _toString() method. The problem I am facing is that the form does not inherit from controller and I can not do $str.= ...
4
votes
1answer
26 views

Why $pear->packageExists() returns always false on installed package?

I installed Mail (http://pear.php.net/package/Mail) by pear install Mail everything seems to be ok, but checking for this package programmatically: $pear = new PEAR_Registry(); $enabled = ...
0
votes
3answers
166 views

Laravel 4 Resource Controller shows single page no matter what typed in the url

I have set up a resource controller using jefferyway's laravel4 generator as player. So when i go to the url /players/show it shows me the show.blade.php. That's correct. But when I go to the ...
0
votes
1answer
28 views

Parse error: syntax error, unexpected '[' with php 5.3 [duplicate]

My script is working really fine on my xampp. Now I tried to upload it on the server, but it spat directly a Parse error: syntax error, unexpected '[' in my face. :( The line which its mocking ...
0
votes
0answers
17 views

PHP ImageWorkshop package with Composer failing

So very strange issue. I only recently starting using auto loading in PHP 5.3+ and of course, this inevitably led to composer. I did a really simple install with composer with only one package, php ...
0
votes
1answer
28 views

PHP5.3 Wamp 2.2 Image functions not working

while I am trying to build a captcha in my web application ( PHP ), its not rendering the image. So I tried with the following code, which is the simple example in php.net. But this also not rendering ...
0
votes
1answer
31 views

How can I populate content from a facebook page using Opengraph without using a facebook app ? is that possible?

So I'm told to do this not so clear project where I am supposed to create a facebook page and populate it with content from another facebook page using opengraph . For this project , I do not have to ...
0
votes
1answer
25 views

Unexpected $this - setting element of an array to a class member [duplicate]

I have the following in my class: private $_foo = array(); private $_bar = array($this->_foo); I get an "unexpected $this" error on the second line. Is this not allowed? If not, how do I work ...
-3
votes
5answers
62 views

Sample Login in Php doesn't redirect

Hello I've followed a tutorial in php in creating a sample login system. but it doesn't seem to work. What's wrong with the code below. login_success.php <?php session_start(); ...
1
vote
2answers
87 views

Detect Encoding and Convert Everything to UTF-8 with PHP

I want to extract various data from URLs that will be converted to UTF-8 no matter what the encoding methods is used in original page (or at least it will work on most of the source encodings). So, ...
0
votes
1answer
47 views

How do I assign a class instance method to a variable?

Say I'm here: class Foo { public function test() { // I'm here! } private function pow() {} } I want to declare a local variable that references the method $this->pow. I ...
2
votes
2answers
39 views

scope of server variables in php

As we know that session variable $_SESSION is different for each user. I want to know the scope of Server variable like $_SERVER. I am doing http authentication in my RestFul API. If I set the ...
0
votes
1answer
239 views

Laravel 4 Form builder Custom Fields Macro

Im trying to create a custom HTML 5 date field for using in a laravel 4 framework view. {{ Form::macro('datetime', function($field_name) { return ''; }); }} {{ ...
0
votes
1answer
17 views

Class constructor error on validation

I am developing a file uploaded class, and trying to perform few validation before other codes, but its returning all vars instead of false, check following code.... class FileUploader { private ...
0
votes
3answers
24 views

Number not exactly printed in the excel record file

I want to display unit numbers in front of Property name. I fetched my data in $arrobjPropertyName array object and in foreach loop I print it as foreach( $arrobjPropertyName as $objProperty ) { ...
0
votes
1answer
36 views

Can not redeclare function in PHP [closed]

I am getting the oddest error PHP Fatal error: Cannot redeclare checklastcharacter() (previously declared in /var/www/vhosts/######/develop/public/lib/init.php:23) in ...
0
votes
1answer
27 views

How do I rewrite this compress() function to not use a while() loop?

I have the following compress() function: function compress($input){ $from = array("\r\n", "\n"); $to = array('', ''); $output = str_replace($from, $to, $input); while(true){ ...
1
vote
3answers
60 views

Sum values in Multiple Dimensional array that have same key value

i have a Multiple Dimensional array and i need to sum up values which have the same keys . print_r($inputs) Array ( [0] => Array ( [id] => colors [power] ...
1
vote
2answers
34 views

recursively add elements to array and return new array

Let's say I have an array like this: $my_array = array(1, 2, 3, 4, array(11, 12, 13, 14), 6, 7, 8, array(15, 16, 17, 18), 10); I want to build a recursive function that returns an array which ...
0
votes
0answers
102 views

How To Run Zend Guard Loader With Wampserver 2.2e (With PHP 5.3.x)

It's my polite and gentle request, if anybody knows the answer PLEASE share it with me, my concern is :- I really want to run Zend Guard Loader with PHP 5.3.x and my current configuration is :- ...
2
votes
1answer
50 views

how to use RC6 in php5?

I need to use RC6 cipher for my project. But, because the installed mcrypt library in my server is mcrypt version 2.5.8, so it's not support for RC6 cipher. As wrote in ...
-1
votes
0answers
40 views

How to fetch db array as assosiative

PHP CODE $result = $sth->fetchALL(PDO::FETCH_ASSOC); THIS IS MY ARRAY array(3) { [0]=> array(15) { ["first_name"]=> string(3) "sfs" ["last_name"]=> string(3) "sfs" ["email"]=> ...
0
votes
1answer
32 views

How to preg_replace with incremental counted numbers using php?

I need to replace a certain pattern with incremental counted numbers. My code: $text = "Hello (apple) hello (banana) hello (cucumber)"; $pattern = '/\(([^\)]*)\)/s'; $i = 0; $returnText = ...
0
votes
1answer
70 views

PHP script stopping right after “$com = new Com('WScript.shell');”

I'm trying to debug a huge php script file that when reaches this line $com = new Com('WScript.shell'); The whole script just dies and stops working. I'm debugging in using Eclipse PDT. I tried ...
0
votes
0answers
96 views

Issue with date_sun_info when using date_diff

I am working on an API that will return lots of good information based on the zip code - but I ran in to a problem with date_sun_info that only happens when I call date_diff. (Of course I did try and ...
0
votes
1answer
173 views

Joomla 1.5 and PHP 5.3

I have one website which is using Joomla 1.5 and running in php 5.3 . It was running with PHP 5.2 version, but the hosting company now updated to PHP 5.3 .So Joomla is creating issues with it: I ...
1
vote
8answers
248 views

Use '.class.php' extension for PHP classes?

Is it common practice to append use '.class.php' extension for PHP classes? On PHP.net here: http://php.net/manual/en/function.spl-autoload-register.php there are some examples like this: // Or, ...
1
vote
4answers
189 views

How to generate or modify a PHP class at runtime?

The schmittjoh/cg-library seems what I need, but there is no documentation at all. This library provides some tools that you commonly need for generating PHP code. One of it's strength lies in ...
4
votes
5answers
502 views

Undefined index: page in

Ok I have the above error on my page, I am using PHP 5.3 for the first time, and have used this code before but never had this notice, so I was hoping for some guidance. I have looked at some ...

1 2 3 4 5 13