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
3 views

Unable to connect PHP and interbase

I have a system that need to be run on interbase. When doing the setup, i get this error when trying to start my apache. error msg: PHP startup: interbase: Unable to initialize module Module ...
0
votes
0answers
9 views

Including multi step form on external sites

Our website has a multi step form and we have many affiliate websites who iframe our form onto their site. However, I'm looking to move to a better alternative than to use an iframe, is it possible to ...
0
votes
1answer
29 views

add form in javascript

Hello i've got a form like that <form action="xx.php"> <div id="myForm"> </div> <button>Add Form</button> <div id="clone"> </div> </form> ...
0
votes
0answers
16 views

How can I send valid JSON back to iOS application?

I have a problem. I'm trying for weeks now to fetch data from a database, encode it to JSON and then send it back to my iOS application. The problem is that every time the JSON is not valid says ...
-3
votes
0answers
12 views

I want to genrate MLM binary tree in php mysql

I want to genrate Binary tree in php for MLM project. My mysql databse table is userid parent id node 1 0 2 1 L 3 1 R ...
-1
votes
2answers
30 views

php regex or string check to make sure a variable contains specific characters

I need to make sure a variable that holds product id contains only specific characters. For integer-only variables I'm using is_numeric to check. But for a product id, the variable can contain only ...
0
votes
0answers
16 views

Reading XML file with php from an another source

I have an XML file on my local machine which has IP: 192.168.1.13 and it has a web service and this service creates an XML file which is on ...
0
votes
3answers
14 views

mod_rewrite domain to directory

I want rewrite example.com url to example.com/ru For example if url is example.com/books I want have example.com/ru/books I think I can't this do with header() function This method is also ...
0
votes
0answers
17 views

How to retrieve query stored in session in codeigniter?

while using codeigniter i have saved current query in session so that I can show pagination in detail page means prev/next button detail screen.But when I use LIKE %10% in query it shows in home page ...
0
votes
1answer
26 views

Update query to find out registered ids from an array in php

I am trying to find out which ids in an array are already registered or updated in the database. hOW can i customize my query to add array of ids $ids and make query to check for all the ids in the ...
-3
votes
0answers
17 views

Prosuct Search by keyword not working in magento

i 've try this https://developerview.wordpress.com/2012/05/28/magento-search-catalog-not-working-fixed/ but i got error like "Fatal error: Call to a member function getProductCollection() on a ...
0
votes
0answers
16 views

Impersonate a user when I'm already impersonating another user?

I want to be able to impersonate a user in my app, so I followed the tutorial from the website If I try to change my user from user "A" to user "B", it works, but if I try to change to user "C" while ...
-1
votes
2answers
33 views

how to call a jquery click function by a button generated from ajax file

hi i have a form which appends a table when a user inputs a value for eg. if a user inputs '1' then the values related to '1' will be appended on a table and the table will be appended on my page but ...
-2
votes
1answer
26 views

PHP/JS wav compression

I am generating a wave file (.wav) in a PHP script on my server, which I am then sending to the client through a GET request. Now my problem is that the download speed of the client limits the file ...
-4
votes
1answer
28 views

How to convert stringified data to an object?

My php has header('Content-type: application/json') and a json_encode. The ajax code I use to send the data to the php file has dataType: 'json' and I am sending the data as a string (json.stringify). ...
0
votes
5answers
46 views

How to display the images from a mysql database? When I tried to display images, its showing only the name of that images

I would like to retrieve images from mysql table. Now I am getting only the images icons only. Please help me to solve this. <?php include 'config.php'; $query = mysql_query("SELECT * FROM ...
0
votes
1answer
9 views

How to reference nested requires in app.yaml for App Engine PHP

I have a index.php with a require 'myfolder/folder/lib1.php'; So in app.yaml I reference: - url: /myfolder/folder/lib1.php script: myfolder/folder/lib1.php but this lib1.php does another ...
2
votes
1answer
17 views

Selecting file to be edited

i have an application that is used to edit .txt files. the application is made up of 3 parts Displays contents of a folder with the files to be edited(each file is a link when clicked it opens on ...
0
votes
0answers
14 views

What is the openssl command line to decrypt text encrypted by this php snippet?

What is the openssl command line for decrypting text encrypted using the following php code? function encrypt($text, $key) { return trim(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $key, ...
0
votes
1answer
14 views

Website reported as malicious because redirecting

I have for example site example.com in index.php I'm redirecting site if ($_SERVER['HTTP_HOST'] == 'www.example.com') header('Location: http://www.example.com/ru/'); Antivirus detect this ...
-2
votes
0answers
25 views

Looking php script. Variables 1-10 show in progress bar

I'm looking a php script or function which display variable in bar. when give variable it will be display in progress bar. Something like this: this
-1
votes
0answers
22 views

How to convert a text into spun using PHP?

Is there any open source or free PHP script to create spun text same as that on http://pageinvasion.com/free-article-spinner Where can I get Synonyms Database for spun creation. I want to create a ...
0
votes
2answers
23 views

iframe Regular Expression form validation

I'm having trouble validating a form entry using a regular expression. I am only just learning regular expressions and specifically for this task. The problem: I have attempted to write a regex ...
0
votes
0answers
14 views

Zend_Form validate crashing PHP

Running PHP 5.4.15 / ZF 1.12.3 (upgraded from 5.4.12 or 13 I believe). Running nginx w/ php-fpm, also tested with Apache. NOTE: This appears to be related to APC. I would highly prefer APC, and cannot ...
-2
votes
2answers
32 views

Iterate through multiple arrays and check if all elements are non-empty (or strlen is at least 1)

For example have 3 arrays. With $_POST the arrays looks like $_POST['row_id'] - $_POST['row_id'][0], $_POST['row_id'][1], etc. $_POST['date_day'] - $_POST['date_day'][0], $_POST['date_day'][1], ...
0
votes
0answers
18 views

Have option display blank then on submit keep value selected

Is it possible to have the first item in a dropdown list blank and selected by default but when choosing an item in the dropdown list and hitting submit, having that value stay there. here is an ...
0
votes
0answers
5 views

Laravel - Using bundle to retrieve data from db

First of all, I'm new to Laravel and MVC environment. For this project, I'm using MySQL as database and Charisma as the bundle. I'm having difficulties when trying to retrieve data from db. I wonder ...
0
votes
0answers
11 views

php crawler to extratct the table records html simple dom

Hello I am using php simple dom and want to extract the records in asp web page i wrote the code but i am unable to extract the table details can any one suggest me how to extract the table ...
0
votes
2answers
19 views

Saving generated pdf directly to a folder folder - Codeigniter

I would like to generate and send the created pdf to a folder but i get an error, this error : A PHP Error was encountered Severity: Warning Message: ...
0
votes
0answers
9 views

Facebook API how to allow only members of a group to access the app

Hello i am currently using this php code. With the code i am using now i get a few problems. 1. When i log on it only asks for permission to use id/username not groups. 2. I get errormessage: ...
-1
votes
1answer
24 views

New project, graph database?(Neo4j)

I've this web project (in PHP) I wanna work on and I'm going to need alot of does any X (friend of friend) like Y kind of questions. So I was crossing Neo4j but I'm not sure if it's Therese right ...
-1
votes
1answer
33 views

Populate multiple dropdown lists with PHP

I have 3 dropdown lists to populate from sql database using PHP and javascript/ajax. First list starts with filled options, second list populates from database depending on selection. All this works ...
1
vote
1answer
30 views

PHP - POST Method - What happens when content exceeds content length header?

I don't mean the POST content limit imposed by php.ini, I mean in the request header the content length is set as say 1mb, but 2mb of actual content is sent. Does the first 1mb get passed to the PHP ...
0
votes
0answers
9 views

Trouble with vanilla Bonfire/CI installation and .htaccess

OK, so my situation is rather simple (although not yet resolved). I downloaded Bonfire (for CodeIgniter) Created a new folder in my Sites folder, let's say bonfire (I'm using XAMPP for Mac) I'm ...
1
vote
1answer
24 views

How do I check if a URL is exists in PHP, without following redirects?

I have a PHP script call notfound.php that get executed when my web site hits a 404, and it will try to create a valid URL based on some logic that I have written. After I create a new URL I check if ...
0
votes
2answers
30 views

Best CodeIgniter search library?

I have CodeIgniter 2.3 web app with a rather large mysql database (400,000+ rows) for which I would like to enable some advanced searching (i.e. multi-field, loose text, etc) and have search results ...
-4
votes
1answer
27 views

Form values are not storing in database by using mvc architecture?

This is my code and it is not storing the values into the database... I am new to this mvc and i don't how to overcome that problem.. please help me to find solution for this.. * ** Here is my HTML ...
0
votes
2answers
13 views

Nginx Running Wordpress Redirecting www to non-www by mistake

I have an nginx server (1.4.1) running a website in Wordpress. It is automatically redirecting www.mysite.com to mysite.com without any specific rules for doing so. I'd like it to stop and keep the ...
0
votes
1answer
14 views

localization in codeigniter based on cookie value

I'm trying to rewrite asp.net mvc application to codeigniter. Basically codeigniter follow mvc pattern so it's pretty much ok. Now I'm stuck at localization. I do not want to change url, in order ...
0
votes
1answer
33 views

Submit Only One of Two toggling forms

I have two different forms which are being included in a php file. Their visibility is based on a onClick JS toggle function. The toggle works great. However if I was to fill only one of the forms out ...
0
votes
4answers
36 views

Need to find product details with minimum price

tbl_product: +------+------+------------+-------+ | id | code | name |brand|origin| +------+------+------------+-------+ | 1 | 1001 | apple | X | a | | ...
3
votes
2answers
26 views

PHP - Could you use POST method to stream data to a server over a long period of time?

Caveat, I know this has the potential to be a ridiculously stupid question, but I had the thought and want to know the answer. Aim: run an interactive session between browser and server with a single ...
0
votes
2answers
17 views

Fetch the gmail original message without unwanted text like encrypted in php

i am trying to fetch the emails from gmail by PHP using imap. Am getting emails perfectly but my problem is i am getting email messages with unwanted message. For example my gmail message is "Hi, ...
0
votes
1answer
21 views

Android - Update adapter when rows are added in MySQL database

What i'm trying to do is.. Develop a basic group chat app. The chat history comes from a MySQL database on a web server. Display in the form bubble conversation the chat data. Now, what do I do ...
1
vote
0answers
12 views

Banner Serving Optimization

Like most of the pages, my website have multiple banners in a single page. We have an internal banner system.For calling a banner, a web request is made like ...
0
votes
1answer
7 views

Eclipse Indigo - Unable to Install PHP Plugin

I'm getting the error message Error occurred while collecting items to be installed while installing a PHP plugin in Eclipse Indigo. Can anyone provide me the exact link to install the PHP plugin in ...
0
votes
0answers
11 views

Obtain form value from Drupal 6 module form while loop

inside form hook: $count = 1; while($slice = db_fetch_array($fruit)){ $section = $slice['section']; $form[$section][$count] = array( '#type' => $slice['type'], ...
0
votes
1answer
48 views

Is exit needed after return inside a php function?

<?php function testEnd($x) { if ( ctype_digit($x) ) { if ( $x == 24 ) { return true; exit; } else { return false; exit; ...
0
votes
0answers
18 views

Laravel 3 - POST Content-Length Exception

Running Laravel 3. I am trying to upload files with the laravel framework. If the file is larger than the php setting for upload_max_filesize it throws the exception below. I have tried this in my ...
0
votes
0answers
8 views

Woocommerce how to edit address

I am having difficulties in editing a new address type in woocommerce. I added besides shipping and billing, another type of address, personal. I want the user to change the data on his my ...

1 2 3 4 5 7820