Tagged Questions
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.
-1
votes
0answers
8 views
Looking for some free web service to resize image by passing parameter in URL
Is there any free web service to resize image by passing parameter in URL likes:
http://webservice.com/resize.php?src=http://example.com/demo.jpg&width=100&height=100
Thanks
1
vote
1answer
14 views
Datepicker get date accoding to server date/time
How to make work datepicker according to server time , how to set the server time to datepicker Jquery Ui, any help will be appreciated
Yes via clinet side we cannot get the server datetime, is there ...
-3
votes
0answers
17 views
Paypal - Payment has been blocked [closed]
In paypal integration I got an error, is there any solution to solve this problem.
We notice that you are attempting to pay an Indian resident user. The payment you initiated has been blocked. ...
1
vote
1answer
13 views
jQuery AJAX can't work when injected on external URL?
I am currently trying to retrieve some data from book search sites and populate a personal database with that data. My idea is to inject the necessary jQuery on the page, so that when I see a title I ...
0
votes
0answers
18 views
date function in PHP - applies timezone? [duplicate]
I came across something I found a bit confusing when using the date() function.
// Set up unix timestamp 03:34
$t = (3 * 60 * 60) + (34 * 60); // 12840 seconds
echo date('Y-m-d H:i',$t);
// displays ...
0
votes
0answers
20 views
SQL Query efficiency within class [migrated]
I'm trying to figure out whether I should do the following:
This class (over-simplified version) retrieves information about an order by having 1 main query function that select a specific column ...
0
votes
0answers
15 views
Inline attachement of image failed in php mail
I have header like this
$strFilesName = end(explode("/",$attach_pdf));
$strContent = chunk_split(base64_encode(file_get_contents($attach_pdf)));
// header part to add inline image
$strHeader .= ...
0
votes
0answers
8 views
Magento- Do not wait for response from controller
I am building a Magento plugin that exports orders to a 3rd party system via web service.
I am possibly going to use this method to export my orders so that the user doesn't have to wait for the order ...
0
votes
0answers
7 views
How to config continous deployment from BamBoo to CloudControl
I'm configuring my project so that after building and testing phase, the project will be automatically deployed to CloudControl.
However, I'm struggling with the configuration
Since my web app ...
1
vote
2answers
26 views
JQuery fails when part of PHP include but not if injected by PHP
All right folks I have a problem with some jQuery error handling code I have written. The issue is, if I write the jQuery code so that PHP injects it into the page using echo statements the code ...
-1
votes
1answer
31 views
Parse error: syntax error, unexpected '=' in C:\wamp\www\insert_data.php on line 9 [closed]
So I got this error:
Parse error: syntax error, unexpected '=' in C:\wamp\www\insert_data.php on line 9
On this line:
$std-id = $_POST['std_id'];
my php code is:
<?php
if ( ...
0
votes
3answers
46 views
How to make ranking system in PHP
I have problem. .
In my case i make championship. . You know, the winner is determined by the highest value. .
Example :
$sql = "SELECT bla bla bla FROM `user` ORDER BY `point` DESC";
$result = ...
0
votes
2answers
37 views
Comparing and checking PHP Date()
I'm trying to figure out how to compare against date(). I'm following along in a tutorial about how to use this function to compare the current time against the time a cache file was last modified. In ...
-1
votes
0answers
13 views
Installing PHP with Apache local
Following this tutorial: http://www.php5-tutorial.com/requirements/php/ but downloaded a newer version of PHP (5.3.25). When I get to the Web Server Setup I only have 3 options (unlike the screenshot ...
1
vote
2answers
22 views
Using php variables in js files
I have a view file called edit.ctp and a js file called edit.js.
On edit.ctp i'm calling edit.js like that:
$this->Html->script('edit', array('inline' => false));
js files its being ...
0
votes
1answer
13 views
How to do an XPath query on a DOMNode?
Is there a way to do an xpath query on a DOMNode? Or at least convert it to a DOMXPath?
<html>
...
<div id="content">
...
<div class="listing">
...
...
0
votes
2answers
33 views
PHP array iteration with key value pair
I want to iterate through an array with "$key => $value" pair but want to go up to the last but one item. I want to know how that is doable using foreach or any other function.
Here is why I want to ...
0
votes
0answers
10 views
Debug Mode: Notice: Undefined index?
I'm working on flickr (wordpress widget).
Here is code: http://pastebin.com/Qu0TCt3c
This widget works fine but when i actived the WP DEBUG MODE, I got the following error in wordpress ...
0
votes
0answers
22 views
Articles Directory
Hi all I have a big question. I am currently a php beginner so the knowledge is not as experts here. But I like to learn.
My problem is this,
I am creating a articles directory. My scenario is this,
...
2
votes
3answers
38 views
How do I pass an md5 hash of email addresses in URL?
Using:
MySQL 5.1.68-cll
PHPmyadmin 3.5.5
Interspire Email Marketer 6.1.2
In Interspire, in my email newsletters' links, I want to pass a variable e=[MD5 hash of that subscriber's email]. Any ...
1
vote
0answers
12 views
Inject Row into Zend_Db_Table_Rowset_Abstract
I want to inject rows into a rowset object to avoid multiple inline selects.
So normally you do
$table = new Model_DbTable_Bug();
$select = $table->select(false);
...
-2
votes
2answers
18 views
Sort MySQL table records
I have two tables "states" and "countries"
states
state_id
country_id
state_name
state_code
countries
country_id
country_name
country_code
How do I display states list according to the ...
0
votes
2answers
24 views
Display image from database showing same images
I am trying to display an image coming from the database and I was able to get it but the problem is, it's displaying same images even though I uploaded different images.
Here's my code:
<?php
...
0
votes
2answers
37 views
JavaScript/AJAX is saying “undefined” when it should show a picture
On my register page, I am trying to set it up so that when somebody enters a username into the username box, it will either show a green check mark if the username doesn't exist, or a red 'X' if the ...
0
votes
1answer
17 views
PHP Grab $_POST values without knowing values beforehand
A friend told my you can grab stuff from a general $_POST array, but I'm not getting it.
What I have are some values with unique row IDs pulled from a MySQL DB. I have them displayed so they can be ...
0
votes
0answers
5 views
Use Runkit_Sandbox in lampp
I want to use the sandboxing of the extension runkit. From README file
Sandboxing is ONLY AVAILABLE in PHP 5.1 (release version, or snapshot dated
after April 28th, 2005) when thread safety has been ...
0
votes
1answer
19 views
How to resolve undefined offset notice? It always show [duplicate]
I have some problem when i used PHP operators to compare 2 of array value. And notice error like this : Notice: Undefined offset: 1 in C:\wamp\www\ always show on my browser. All the way i have done ...
0
votes
2answers
31 views
PHP Weeknumber and start date and end date
I am writing a program code to display the week-number between two dates. I als0 want to display the dates between the week-number. I have written the following code as per the example codes from ...
0
votes
1answer
11 views
Low overhead methodology to determine case sensitivity of OS
Is there a way to find out if the OS is case sensitive without much overhead (no write-read operation) and without having to know that a specific mixed-case file exists somewhere on the server?
The ...
1
vote
0answers
22 views
Replacing occurences of a specific word if not proceeded by another specific word?
I have some text like:
*open* blah blah blah blah blah *close* blah blah *open* blah blah *close* blah blah *close*
I was wondering how would I remove/replace any occurrences of *close* which are ...
0
votes
3answers
21 views
Case sensitive php mysql login
I have a simple authentication script that is working but i discovered that for a user admin with password admin, a user ADMIN with password ADMIN can also log in. How do i make this script case ...
1
vote
2answers
22 views
Running a statement based on information from POST variable
I'm in a bit of pickle but the answer is probably pretty simple.
So I have my POST variable:
Array ( [accept] => accept,29 [accept1] => accept,30 [submit] => Save Selections )
That's ...
0
votes
0answers
13 views
Adding banner between SimplePie feed articles
My SimplePie install is a straight-up linux install. (no wordpress or anything)
I'm trying to add a banner in-between my feed articles. For instance if I have 10 feed articles displaying per page, ...
0
votes
0answers
18 views
Return image from search php
This is my search php code, it's working fine, but I want to return the link of the game.
In this code I'm able to see the game name when I hit search, but I want to see my gamelist depending on what ...
0
votes
1answer
23 views
Detect if an HTML table has been pasted into a textarea
I was wondering if there was a way to detect (or at least make a good assumption) whether text pasted into a textarea includes content copied from an HTML table?
I'm finding users of my website are ...
0
votes
2answers
27 views
Unexpected token A
I have this function:
function returnVehicleByValue(vehicleValue){
$.get("inc/ajax/selectMojaVozila.php",
{vehicleValue:vehicleValue},
function(html){
var vehicle = ...
0
votes
0answers
12 views
cannot send email using CodeIgniter
I was trying sent email using PHP CodeIgniter framework. after i uploaded that file into my browser it didn't show me any error. it said:"Your email was sent successfully". But i didn't get any email ...
0
votes
0answers
7 views
Extract the first image in a node to display in views
I am trying to achieve this for Drupal 7: http://drupal.org/node/1045712
I would like to extract the first image (class is 'inserted') of a node and display it in my view. Kinda like a cover image ...
0
votes
1answer
26 views
PHP: Call to undefined function mssql_connect()
I'm trying to set up a registration page for my gaming service, seems like i'm stucked here :\
Here is the code:
<table class='ipb_table' cellspacing="1">
<tbody>
<tr>
...
0
votes
2answers
35 views
Regex: How can I find number and character between { }
I have a string like:$str='&%#^*@\"~ \'a4{=s{sa*}7s*&$db{abc654d3ws67}d(*$%#$c6'#^*@"~ \'a4\"'; .
I need to find what is not like {abc654d3ws67} as $needle from that string and preplace it by ...
0
votes
0answers
6 views
getValues() from Zend_Form returning empty
Well, i have a action (EditAction) the loads the content (from Zend_Db_Table) on view (edit.phtml) and when user click on save button this same action is called to save and everything works fine.
...
0
votes
1answer
23 views
Reservation System PHP Count
Hi I want to make it redirect to a page if the cost of the reservation is $36 what am i doing wrong thanks
function get_usage()
{
$usage = '<table ...
1
vote
0answers
8 views
PHP ssh2_exec() from Ubuntu Server to Windows with OpenSSH in Cygwin - works but fails the second time
I had been using PHP's ssh_connect() and multiple ssh_exec() between two Ubuntu VMs without any problems. However, now I need to call multiple ssh_exec() from Ubuntu Server to Windows machine via ...
0
votes
2answers
23 views
Most efficient way to store, pass, and parse simple array data in PHP
My PHP script is receiving data from an HTML input as an array:
<input type="checkbox" name="value[]" value="1" />
<input type="checkbox" name="value[]" value="2" />
<input ...
0
votes
1answer
27 views
PHP MySQL UPDATE query not working (no rows returned)
I'm having troubles using the UPDATE query from a MySQL function in PHP. I'm not making any syntax error, but it simply don't return any row (I'm echoing the result rows and it always says 0). My code ...
0
votes
2answers
13 views
how to merge this array php
This is my first array var_dump
array(1) {
[0]=>
array(55) {
["Primary Maths"]=>
NULL
["Primary Environment"]=>
NULL
["Primary English"]=>
NULL
["Primary ...
0
votes
2answers
35 views
PHP - foreach looping double
I have this funny feeling like this is going to be something simple that my tired eyes have missed.
Given the following array $query:
Array ( [report_id] => 19 [facebook_id] => Array ( [0] ...
1
vote
1answer
17 views
PHP: Find valid hex in string
Assume that I have a string like:$str=abcef7ha43HEX_STRING7sf6gHEX_STRING //"HEX_STRING "is any valid hex string.
I need to find HEX_STRING in $str and replace it by result from ...
0
votes
2answers
13 views
Why is it that throw new exception does not echo the message?
I have been trying throw new exception in my php function, but it does not echo the error the message. I could have used the regular echo instead, but I really want to see the difference. please ...
0
votes
0answers
14 views
Making a PHP Object from a JSON Schema
I've been tasked with creating a class for objects defined by a JSON schema. Initially I was just going to build the class based on the schema, but now I've been told it should be automatically ...




