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.
0
votes
1answer
23 views
PHP CRUD Unknown column in 'where clause'
I am creating a CRUD page. I've been able to insert data into my database, with the following code:
$query="INSERT INTO user(USER_ID, PASSWORD, FIRST_NAME, LAST_NAME, CONTACT_NO, ...
1
vote
0answers
15 views
php xml modify value
i want to add or modify xml value, an example below i want to check if node log with attribute time value is equal with date now and check if node user with attribute id value = '1', if true i want to ...
0
votes
0answers
34 views
array element removed twice
i have a problem to delete an element in array. every time i pass into the delete procedure, the array has reduced by something. i don't know in which line the element removed. please help me to check ...
0
votes
0answers
11 views
content is not visible in codeigniter calendar
I can insert data into the database using CodeIgniter and also can get the data from database. But the problem is I can't get the data form date 1-9 (data is present in the database), from the 9th of ...
0
votes
0answers
7 views
How do I add all waypoints from a point to point googlemaps to a database?
I am playing some with google waypoints
https://developers.google.com/maps/documentation/javascript/examples/directions-waypoints
Can't figure out how to get results to load into a database.
I wish ...
0
votes
5answers
41 views
How to get first day of current month in php?
What I want to do is get 1st date of current month
here is how to get last day of current month code
date('d-m-Y',strtotime('last day of this month'))
And I try to use this, but it's not work for ...
0
votes
1answer
26 views
PHP/HTML Query from Dropdown menu
Below are my create tables, html file that has a drop down menu that has artists, and a php file that based on the artist displays all the title's of albums by that artist.
I can't seem to get the ...
0
votes
1answer
23 views
Prevent direct access to action form
I have a form.php wich action call sql.php file like:
SQL.PHP
if ($_REQUEST['action'] == "add") {
}
if ($_REQUEST['action'] == "edit") {
}
I'm like to prevent direct access, because user can call ...
0
votes
1answer
25 views
PHP - Script running before file upload
Something crazy is happing with my PHP scripts. So when I upload a file in the form, I look at the apache log and there are php references while my browser is still uploading the file. And I am ...
0
votes
1answer
25 views
Catchable fatal error: Object of class PDOStatement could not be converted to string
Following is the php code to execute sql. But it fails with Catchable fatal error.
And I have read the php manual PDOStatement, the sample code is such similar with the code I wrote. I can't figure ...
2
votes
2answers
35 views
how to let the form remember the values i put
<form name="search" method="post" >
Seach for: <input type="text" name="find" /> in
<Select NAME="field">
<Option VALUE="category1">category1</option>
<Option ...
0
votes
0answers
12 views
how to (run/start) shoutcast via php in linux?
my code now is
<?php
$command = "/path/to/sc_serv /path/to/sc_serv.conf";
$PID = shell_exec("$Command > /dev/null & echo $!");
?>
this will give me the PID number but will close ...
0
votes
0answers
9 views
D3js network map using mysql 2nd level connections?
So I'm making a D3js network map. The graph.json in all the examples is in the following format:
{
"nodes": [{
"img": "dfsdfgsdfg"
}, {
"img": "sdfgsdfgdfg"
...
0
votes
0answers
11 views
Application Cache for Dynamic Sites
I am making a php mysql web app, my idea is to install in the customer home a web server so they can connect with whatever device they want, probably most of the time they will be using an ipad to ...
0
votes
0answers
23 views
Error parsing data org.json.JSONException
I'm working with PHP, JSON, and Android to create mobile app that can retrieve data from MySQL database. I'm able to get all data from database but, when I try to get a specific data based on the user ...
0
votes
1answer
15 views
Couple newbie questions regarding the openJS grid
i am playing with the openJS grid. Being through all the videos, however still stuck. I am using the latest OpenJS Grid 2.1.5. Couple questions here:
When i used the basic setup example, with the ...
0
votes
3answers
42 views
How to get Form Element Value using JavaScript
I am trying to find value of the input element in a popup window which is being opened from a parent page.
My code is below. I am getting not able to get pc value from input.
<html>
...
-1
votes
1answer
21 views
Secure upload of an image. php [closed]
I have upload images website, what kind of checks should i do ? For example: mime check, is valid image check, and what else? i won't to prevent uploading of virus/shell/no-image file. Thanks you. ...
0
votes
1answer
24 views
Passing arrays from AJAX to HTML to PHP - Is this Possible?
I have an AJAX call returning an array to a PHP-HTML page. Here are some block of codes:
Javascript
"Note: get_data.php returns an HTML string and I want to store it in an array"
var param_array = ...
0
votes
1answer
17 views
Small and easy versioning for live web project
I have the following situation:
I worked on an existing (and running) PHP web tool for a long time now, fulfilling change requests and fixing bugs. I did this very dirty, using an FTP software and a ...
0
votes
1answer
13 views
Is it possible to create custom functions when use sqlite in cakephp
I need to create a custom function silimar with mysql. But this must be in sqlite to run tdd.
I have not found how to do this in documentation or in code structure.
Reference: ...
0
votes
1answer
17 views
Random order of readdir
How would I modify my PHP code below to output all the files in the directory, but to put them in a random order that changes each time the page gets reloaded?
if ($handle = ...
-3
votes
1answer
55 views
PHP select value not saving to MySQL
Cannot figure out why the below will save fine on my local test server, but not on my hosted. The dollar sign is the only value that will save on my hosted. All save fine on local.
For both I have
...
0
votes
3answers
16 views
Mysqli prepared statements fetch_array
I am trying to get the below code working but it is not working and giving me the below error
Fatal error: Call to a member function bind_param() on a non-object in
Is there any way to fetch an ...
0
votes
0answers
11 views
Change visbility of markers on a google map taking into account respective attributes
I have a google map on my website that receives all the marker information through makethemap.php
Its working all fine and the map is correctly generated. However, I don't know how to change the ...
0
votes
1answer
11 views
Posting a message to a friend's wall using the app access token
I am trying to get my app to post to a friend's wall. I tried using the FB.api method but I discovered that using that has been disabled.
Then I tried using the FB.ui feed dialog but then I ...
0
votes
0answers
25 views
How do I get the URL from the previous page used to connect to my site? Not the link
I have tried this: $_SERVER['HTTP_REFERER']
The challenge is it only gets the link that the person clicked on to reach the next page and not the actual URL of the previous page.
It does not matter ...
0
votes
0answers
41 views
Using Session in a if statement
I have a page where there are two different session variables coming in from other pages. Basically I want to say if the session is set from page 1 then use these variables else use the variables from ...
0
votes
0answers
7 views
Twitter Oauth Retweet Variable
I'm trying to send a RT using Oauth and it's not working. Not sure, what I'm doing wrong. I can publish status updates but not retweets. Here's my code I've tried:
...
0
votes
1answer
14 views
PHP function giving error about open_basedir restriction in effect
I installed ushahidi 2.7 on my www.000webhost.com free server, however after logging in I got this error from one of the ushuhidi files:
I tracked down the ushahidi code, and found that this was ...
0
votes
1answer
17 views
using multi where when select items from database
I want to selected items from mytable when using three tables and &_GET another id to open in this page so i want to use where and where to complete fetch my data by using two roles .
<?php
...
-4
votes
1answer
29 views
Getting specific data from SQL database
Im creating some sort of a photo album, user uploads images to DB, saved to a table which also accepts "event name" in which the photos where taken from...
I wish to display a list of events uploaded ...
0
votes
1answer
20 views
Insert a customer borrowing a particular CD
So, I have question on whether the SQL statement for inserting a customer borrowing a particular CD is valid or not.
Here's the form I want the customer to fill out.
<form action="proj3.php" ...
0
votes
2answers
13 views
How to replace QUOTES like forums with php?
I know I should probably be using preg_replace but I'm not the best with regex. Could someone help me with the code for replacing [QUOTE=user]quote here[/QUOTE] to:
...
0
votes
1answer
28 views
Prevent upload shell files. php
I have image upload website. Someone is uploading here shells files.
My validations are:
- Check file's mime (only image's mimes able)
- Check if getimagesize returning array (by is_array)
If not, ...
0
votes
4answers
44 views
php getting part of a URL into a string
Hi guys i m using this code to get the id on my url
$string = $url;
$matches = array();
preg_match_all('/.*?\/(\d+)\/?/s', $string, $matches);
$id = $matches[1][0];
this code works for urls like
...
-1
votes
2answers
29 views
PHP Mysql Left Join
<?php
$q = mysql_query("SELECT sub_cat.*, links.*
FROM links
LEFT JOIN sub_cat
ON links.p_id = sub_cat.id
WHERE sub_cat.p_id = ...
0
votes
0answers
5 views
Magento - Products are not visible in cart
I work in Magento 1.7.
I programmatically create product after user clicks "add to cart" and add to cart newly created products. Duplicating works well, but in my cart page, I do not see any products ...
0
votes
2answers
18 views
How to exclude a form file field on $this->save()?
When a user is created he upload a file.
I want to edit this user, but, when he save and not select any file, in other words, he wants to keep the original, I get this error:
SQL Query: UPDATE ...
0
votes
2answers
64 views
PHP - How I can get innerHTML on an element?
I am novice in PHP. I have javascript functions for adding , removing and moving favorites (DOM Manipulation only).
When I refresh the page this favorites are cleared.
I need:
1.Get innerHTML on ...
0
votes
2answers
27 views
updating xml file using php
hey there i have an xml file that has what i need to do is to add an event with same location name A
<timetable>
<location name="A" >
<event >
...
0
votes
1answer
37 views
how to convert a string data[new][sub_new] the array to jquery [“new”, “sub_new”]?
how to turn on jquery str = data[new][motion_formshow] in array?
i have:
<input
type="hidden"
id="data[new][motion_formshow]"
name="data[new][motion_formshow]"
value="true"
...
0
votes
0answers
5 views
Joomla component package updater
I've written a component for Joomla 3.0. I want to create a sort of optional patchfile for this component that will add some functionality to it.
I don't want to repackage the whole component if I ...
0
votes
3answers
39 views
Can someone tell me what i did wrong here
<
mysql_query("INSERT INTO beta_testk (id, entrancex, entrancey, entrancez, exitx, exity, exitz, adress, owned, owner, value, hint, virtualworld, lock, rent, rentabil, takings, level, freeze, ...
0
votes
0answers
12 views
Symfony2 user no active message at login
My User entity extends the AdvancedUserInterface so I have the option to disable a user for the login.
Now when I login with an inactive user, I don't get any message. If I login with an active user ...
-2
votes
1answer
17 views
Converting lines from a file into a string [closed]
I am reading a file with
$myfileLines = file("textFile.txt");
The contents of textFile.txt are just plain text
is there any way to convert lets say the first line of ...
0
votes
1answer
18 views
unexpected T_ENCAPSED_AND_WHITESPACE [duplicate]
I have looked and can not tell where my Error is if any one see something that i do not can you point me in the right direction to fix here is my code
$con=mysqli_connect("localhost", $user_name, ...
1
vote
1answer
32 views
How to match string based string on text file
Simply in php we could replace a string by other string such as using a particular function, str_replace (), etc
Suppose I have a file.txt contains
text1
text2
text3
...
text n
and i have a ...
0
votes
2answers
36 views
How to create a function that adds or calls an other function after an already called function. PHP
Im not sure about the name of this...I'd want to make something like WordPress has. The add_action function that calls a function after a function.
Something like this:
...
0
votes
1answer
16 views
Doctrine Migrations Namespace Error
I am trying to setup doctrine migrations on top of silex framework. I installed it through composer.
"doctrine/dbal": "2.3.*",
"doctrine/migrations": "dev-master",
My console file:
...
...



