PHP is an open-source server-side scripting language widely used in web development. Use this tag for questions about PHP classes, methods, functions, syntax and use.

learn more… | top users | synonyms (6) | php jobs

0
votes
0answers
4 views

creating json array from arraylist android

I've been toying around with this for a little while and I'm looking for some help. I have an ArrayList that I turn into a JSONArray and then place inside JSONObject. The problem is my formatting. ...
2
votes
0answers
9 views

XPath in PHP: Get all text nodes, except navigation

I’m writing a custom parser/data extractor for some pretty shitty HTML. Changing the HTML is out of the question. I will spare you the details of the hoops I’ve had to jump through but I’ve now ...
0
votes
0answers
8 views

Is it feasible to use RSA encryption to transmit large amounts of data securely between client (browser) and server, both ways?

For a very security-intensive web application (browser-run), it is feasible to encrypt all vital data sent back and forth between client and server using 2048-bit RSA encryption? Assuming there are ...
2
votes
2answers
25 views

2 identical elements returned in array, after mysql query, why?

Ive made a mysql query using PDO like this $timestamp_query = "SELECT timestamp FROM change_me;"; foreach ($conn->query($timestamp_query) as $times ) { print_r($times); echo ...
-2
votes
1answer
20 views

PHP shorthand (Ternary) function

In the javascript world we can run a function through a Ternary comparison, I wanted to see if this applies to PHP, it seems it does only to an extent. <? $a = 1; $b = 1; function doThis($a){ ...
0
votes
2answers
13 views

Using php/pdo to display sql data on website, no luck

I know this is probably something simple, but I have searched for hours the past few days and I'm ready to jump out of my one-story building. Have a basic site for testing, literally nothing on it ...
0
votes
0answers
7 views

Configuring Composer in Netbeans 7.3

Netbeans claims they support Composer in Netbeans 7.3. However, I can confirm that I am running version 7.3, but there is no composer options in the PHP section of my preferences (running OSX 10.8.4) ...
0
votes
1answer
18 views

hiding links from users who are not logged on php/mysql

I am wondering how I can hide two links in my main.php page so when i am not logged in, i can't see the links on my main.php page. Below is my code and basically even when I am logged off, if I type ...
0
votes
1answer
16 views

One dimensional array results from SQL column

SELECT col FROM table Say I have this query and I get the following result: array(2) { 0 => array(1){ "COL"=>"value1" }, 1 => array(1){ "COL"=>"value2" } } Is there some SQL statement ...
0
votes
1answer
36 views

This gets an error even though it shouldn't

This errors: $image_1 = imagecreatefrompng("../Shop/" . $sql1->Eyes); I don't know why? I get this error: Warning: imagecreatefrompng(../Shop/none.png) [function.imagecreatefrompng]: failed to ...
0
votes
0answers
7 views

How to add filter for empty cells in jQuery Tablesorter Filter (via PHP)?

I've been trying to add an "empty cell" filter option to the jQuery Tablesorter plugin that filters cells that don't have any content. This post has sent me in the right direction thus far, indicating ...
1
vote
0answers
24 views

Need opinions of my normalized database layout

I'm working on a project with CakePHP where it will allow users to log their drug use. Be it alcohol, caffeine, or whatever else. When people add a log, they select the substance from a drop down, ...
0
votes
1answer
11 views

how to render image based on mobile height and width?

In WAP application, i have to render image based on height and width of mobile in php.if user download image then the image should be fit on his mobile. please give me sample example on above ...
0
votes
2answers
33 views

replace all links in text by Regular Expressions [php]

i want replace all links in text With the exception of images Links $text = '<p> <a href="http://msn.com" rel="attachment wp-att-7046"><img class="alignnone size-full wp-image-7046" ...
0
votes
1answer
5 views

Dreamweaver cs6 File upload and retrieve from database (mysql)

I am looking for a procedure in dreamweaver cs6 to upload a file to my database in godaddy.com account. Basically i am developing a HR consulting website, here i need a web page that can allow ...
0
votes
0answers
4 views

Cannot flush data into child Table using doctrine

Following is my Code snippet, what i am trying to do is insert ID of Parent Table to child table along with inserting Data to the Child table at same time. Following is my code Snippet public ...
0
votes
0answers
2 views

Class Table Inheritance in Doctrine ORM

Can someone please explain to me how Doctrine 2 ORM handles class table inheritance at the SQL level? I can't seem to find any mention in the documentation of what strategy is used in terms of SQL ...
0
votes
2answers
21 views

send multiple data with $.ajax() jquery using selectors as well

is there a way to send data with ajax mixing selector and independent data like this: $.ajax({ url:"here.php", data: $("#form :input")+"&"+"id="+id, type:"POST", success: ...
0
votes
1answer
11 views

Unserialize an associtive array with iOS from a text string that was serialized with PHP?

I am building a web application that will parse my website's database to an xml file so that it can be uploaded to an iOS application. I'm using MySQL for my website's database and using SQLite for ...
-1
votes
0answers
29 views

PHP static variables and objects

I have a function that is called once for initiation, and then later as a callback. I need some of the values that were defined in the initial setup to be accessed in the callback. I am unsure of ...
0
votes
2answers
31 views

How to echo out an array of arrays using ForEaches

I have a form that asks the user to enter certain information about his or her cat, then the user may submit his information and it will be transferred to the database. I want this information to be ...
0
votes
0answers
6 views

Wordpress best practices: custom wp_table or wp_postmeta - wp_usermeta split

I'm working on a plugin that would allow a user to upload photos using filepicker.io. I want the photos(stored in the DB as a url) to be associated to the post, user(if logged in) and the comment but ...
0
votes
0answers
10 views

PHP Authentication Library Recommendations

I need to create a user login system for a new site which includes Facebook logins. I've searched the web for a good library but can't seem to find any that work well with code igniter and include FB. ...
0
votes
1answer
38 views

htaccess code not working as expected

I have written this in my .htaccess file : RewriteRule ^dashboard/(.*)/([0-9]+)/([0-9]+)/(.*)$ dashboard.php?view=$1&idteam=$2&idplayer=$3&layout=$4 [L] I expect it should give me ...
1
vote
2answers
29 views

How do I map a JSON object to a PHP Class?

I'm building a REST API endpint that adds a company to a MySQL database. The client sends a POST request with an attached data package. The data package is a JSON object. Assume the JSON Company ...
0
votes
0answers
6 views

Difficulty navigating SOAP client WSDL with PHP functions

I am experimenting with a public SOAP API in preparation for testing an internal SOAP API that we are working on at work. I am running into problems dealing with automatically associating method names ...
-8
votes
1answer
34 views

My php code doesn't run even though apache and php installation is correct [closed]

I have installed Apache server and PHP on my windows 7 PC. The apache server is running fine.. Even the phpinfo.php file is showing the content, but my php codes are not running. The browser is ...
0
votes
0answers
19 views

Make sessions work in Yii

Sad Yii is poorly documented. I have built an application with two modules. Each users are referred to using Yii::app()->getModule('module_name')->user Problem is users are always logged in. ...
0
votes
0answers
11 views

Locating PHP Files Encoded with Zend Guard

Is there a way to locate PHP files within a source tree that have been encoded using Zend Guard? There are existing questions about attempting to decode Zend-encoded files, but I've inherited a large ...
-6
votes
0answers
40 views

Unexpected zero before Apache error document

I'm using Ipage hosting and I've tried some scripts on my hosting. When my page redirects form login or logout button this is what I get: 0<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> ...
-2
votes
0answers
16 views

How deal with variable length text in fixed-width box

I have some posts in DB that I want show a preview of them to users in fixed-width boxes (fixed-width line-boxes, fixed number of line-boxes). I want to signal the user if the content is too long and ...
-1
votes
1answer
16 views

Why can't you inherit PHP namespace aliases from included files?

From the note on http://php.net/manual/en/language.namespaces.importing.php Importing rules are per file basis, meaning included files will NOT inherit the parent file's importing rules. So this ...
0
votes
1answer
11 views

Can't rewrite Mage_Adminhtml_Block_Review_Edit_Form in magento

I tried rewrite Mage_Adminhtml_Block_Review_Edit_Form and add custom field to form but failed, it not work. i listen people say Mage_Adminhtml_Block_Review_Edit_Form can't rewrite, i don't know it ...
0
votes
1answer
35 views

jQuery - reference a selector that is included with .load

can you help me with this? I have a local website that displays "news". The newest one is displayed when the page is first loaded, but the older news are loaded only if the visitor clicks a link ...
0
votes
0answers
19 views

PHP/MySQL/PDO - Login form not recognising existing users

My login form isn't recognising existing users. The passwords I have stored in the database are encrypted using PHP's crypt() function. When the user registers their password is also encrypted and ...
-2
votes
2answers
53 views

$_GET and $_POST without form action

In a form, I am trying to get the value of POST data. The code is like this: $output .="<div class='name'>Post Name</div>"; $output .="<div class='edit'><a ...
0
votes
1answer
13 views

How to extract all image urls from a nested object or json string

Given a JSON parsed object with deep nesting, I would like to extract an (array of) image(s) from a nested structure like this: object: { type: "...", title:"...", description: { ...
0
votes
1answer
15 views

prepare statement with bindvalue

I just recently started using PDO, not that much experience with it, but I recently crashed into an annoying problem. I am trying to use bindValue with a fetch statement to retrieve informatie from a ...
1
vote
3answers
24 views

Not inserting data to database from link

So when someone press this link, it should insert all the data from that text id to a new table but with the username who clicked it and the id of the text the user pressed. The problem is, when a ...
0
votes
1answer
26 views

How can I add a $key=>$value pair to an associative array using a foreach loop in PHP?

I have two associative arrays I wish to combine with a foreach loop: $arr1 = array( 'wikipedia.org' => 11, 'bing.com' => 9, 'google.com' => 8, 'blekko.com' => 7, 'groove.com' => 6, ...
0
votes
2answers
31 views

Undefined variable in PHP with class

I'm currently learning PHP on Codecademy and I got one error in their lesson, I don't know why. I get this error Undefined variable: name (line 21)Woof, woof! !. Here is my code: <?php ...
0
votes
1answer
34 views

Load content without refresh

I have codeigniter website which is done 1 year ago. No, I want to implement new HTML5 history API (pushstate) function to enable change content based on the url without header refresh. Is there any ...
0
votes
2answers
27 views

How to assign array values to php variable

In the following code how to assign array values to a php variable. while($objResult = mysql_fetch_array($objQuery)) { $cutomername[] = $objResult["firstname"]; $mailid[] = $objResult["mailid"]; ...
0
votes
0answers
11 views

Creating an additional mainmenu in another module

I am trying to create a horizontal menu, just like the one in my main menu position (in fact I want it to look identical). I have setup a menu module in the position I would like and added the ...
1
vote
0answers
23 views

Passing data associated with a user object between views- PHP MVC

I am using a lightweight PHP MVC (homegrown, but based off of Codeigniter) to develop a web application. Currently, I only have one object - the User. The web application allows each user to curate ...
-1
votes
0answers
21 views

Parse Text File into Database

I'm working on a project that I need to parse a .wtx file and store the contents into phpMyAdmin database. The problem is this .wtx file is just one long line of content. I used the following code: ...
0
votes
3answers
37 views

Execute javascript function from php

I'm executing some javascript functions from php using the following: echo '<script language="javascript" ...
0
votes
0answers
16 views

How do I use AJAX and PHP to dynamically introduce different query data based on an inputted date range?

and thank you for viewing this question. I am a PHP/AJAX noobie, and am looking for help on a somewhat unique problem I am facing in creating a dashboard to display refinable query data from a ...
1
vote
0answers
7 views

PEAR and absolute paths

In why doesn't PEAR use absolute paths? it's stated that PEAR doesn't use absolute paths so people can overwrite select PEAR libs with their own. Is that the only reason? And if so is there any ...
-2
votes
2answers
32 views

Unknown property for PHP class

I have a class CategoryModel defined in part as class CategoryModel { private $id, $categoryText; public function createWithParams($id, $categoryText) { $instance = new self(); ...

1 2 3 4 5 8108