-1
votes
4answers
51 views
Use php var in javascript file fault
I have a question about using a php variable in my javascript file.
This is my index.php file:
<body>
<div class="container">
<div class="row">
<div ...
0
votes
3answers
26 views
PHP using variable in an included function
Main File;
$opid=$_GET['opid'];
include("etc.php");
etc.php;
function getTierOne() { ... }
I can use $opid variable before or after function but i can't use it in function, it returns undefined.
...
1
vote
1answer
32 views
Getting Details from one Dynamic Page to Another - Re-Post
After some wrestling with almost every line of code written for the JoomShopping component I beleive I have found what should be the answer to all my woes.
When activating the "Buy" button in the ...
2
votes
3answers
20 views
How do I use a variable in an array name in PHP? (variable arrays/variable variable?)
I've looked at other questions/answers but I'm not fully understanding it. Furthermore, I haven't found one asking my exact question.
I have 7 arrays storing the start and end times for a business. ...
2
votes
3answers
68 views
PHP: Detecting when a variables value has been changed
I was wondering if there is a way to add something like a change listener to a variable. The simplest example of what I mean would work something along these lines;
// Start with a variable
$variable ...
0
votes
3answers
31 views
How to use a PHP variable in Inner Join MYSQL query?
I have been trying for the past day to get mysql to recognize my PhP variable, but I have had no luck so far.
The code:
...connect to db...
session_start();
//Calls up Session stored variable
...
0
votes
2answers
47 views
php include misses variables [closed]
i have a file conf.php that contains defined variables like this
conf.php
$var1='some value';
$var2='some value';
$var3='some value';
i include this file within a function in another file like ...
1
vote
1answer
18 views
Javascript Scrolling to a PHP variable Scroll point passed through a link
I'm trying to create a page that has anchor tags that link to another page containing a variable for a javascript function on the other page to scroll the window to. As is, I am pointing the link to ...
-2
votes
0answers
31 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
0
votes
1answer
44 views
Variables are not set when member has been logged in [closed]
As I'm using an old mysql_* code which is not secure I decided to try with mysqli. I found a great (I think) login code example online and I have (almost) successfully implemented this code into my ...
-5
votes
3answers
40 views
Passing a PHP variable to a new HTML page [closed]
I have a user login on index.html which redirects users to nextpage.html (using header("Location: http://nextpage.html") after the password/username are confirmed in a mysql database.
How can I ...
0
votes
3answers
29 views
PHP variable is not accessible in HTML template
index.php
<?php
$title = "World";
echo loadTemplate();
?>
Template.php
<?php
function loadTemplate(){
return <<<EOF
Hello {$title}
EOF;
}
?>
On running ...
0
votes
2answers
34 views
class attribute messup in chrome
My php foreach code is like bellow
echo "<ul>";
foreach($value as $key1 => $subjects){
echo "<li><span class='add-on'>$subjects</span>
<input ...
0
votes
3answers
42 views
PHP variables not passed in single quotations
I am trying to pass a variable $user which is defined as the name of the directory the page is in to an iframe on the page.
The variable $user is supposed to pass the username to the iframe so the ...
-1
votes
1answer
46 views
How do I access and set a variable's value throughout a class' functions in PHP [closed]
How do I access a variable throughout the life of a class structure.
For example:
class Foo {
public $var; // <- this is the variable I want
private function xyz($data) {
...
0
votes
1answer
61 views
php pass value to multiple select queries
I'm having trouble passing a variable between MySQL queries on the same page. Maybe someone can advise what I'm doing wrong. I'm new to PHP/MySQL, but the answer seems very easy, I just don't see it. ...
-4
votes
1answer
32 views
Trying to pull one value from mySQL table and assign it to a PHP variable [closed]
I have a mySQL database with a table that looks like this:
id | username |email
On another part of the site, I have a form where a user fills in their details and they get submitted to the database.
...
0
votes
4answers
36 views
Single quote within single quotes PHP
I have a HTML achor tag like below:
echo '<a href="javascript:tempBuy('.$res_get_price[0][0].','.$res_get_price[0][1].','.$res_get_price[0][2].','.$dt_str.')">'.$res_get_price[0][0];
And the ...
0
votes
1answer
30 views
php get value of submit button when value is a variable
I tried to search but was unable to find an answer for this question.
I am trying to get the value of the button in my submit button that is a variable.
CODE is as follows
$penrequest = "select * ...
0
votes
1answer
46 views
Url variables and redirect
When I have url with one variable like: www.mysite.com/animals.php?pet=dogs I do checks:
if (!isset($_GET['pet']) || empty($_GET['pet']) || ($pet_true === false)){
header('Location: error.php');
...
0
votes
1answer
32 views
Is it better practice to store system variables in SQL or $_SESSION in php web development?
I have a php/SQL web development question. Is it better to use an SQL SELECT every page view to get system variables or better to store system variables in a $_SESSION variables?
$_SESSION variables ...
0
votes
4answers
40 views
Php Email Mysql Fetch Array
I have this script to send an email containing information from my database. The user can have 1+ items in the database with it's location. So when I empty the rows that match the user the amount of ...
2
votes
5answers
81 views
How to use PHP Variables in an SQL statement
Before anybody says, I will protect myself against SQL injections, right after I fix this error. I am making an app where news reports are submitted to the database. This page is what removes a report ...
4
votes
3answers
240 views
+50
why does $_GET not work in header-function?
I already have a question with this issue but a further question belonging $_GET and header-function:
I have a multidimensional language site. When calling a page that does not exist, .htaccess will ...
0
votes
0answers
65 views
how to dynamically update javascript from php?
Simple question, how can i update javascript from php ? currently my code works like this ;
// retrieves an id from database
foreach( $childPrs as $chProduct )
{
$checkforsub = ...
1
vote
2answers
39 views
PHP variable from HTML text input
I'm having trouble setting a HTML input text into a PHP variable $x. If I set $x to an image URL, my code seems to work. Now I want the user to input an URL instead of myself. I've tried using [value ...
0
votes
1answer
36 views
can't echo php class variable
I want to write a php simple pagination class. Here is my code:
<?php
class Pagination {
public $rowsPerPage;
public $currentPage;
public $totalPages;
public $totalRows;
public $firstElement;
...
1
vote
1answer
51 views
Not getting data from MySQL - PHP
I'll start off with the code:
$permission = $_SESSION['permission'];
// Connect to database
$con = new mysqli("localhost", "privateinfo", "privateinfo", "privateinfo");
// Check connection
if ...
2
votes
2answers
43 views
how to use variables from one submit button by another submit button inside same form in php
In my php code, there is a form with multiple submit buttons inside and the variable of 1st form is allocated the value after clicking the submit button and similar for the second form by $_POST[]. ...
0
votes
1answer
37 views
variable variables in php with mysql_result
this is my problem:
echo "SELECT * FROM fornitori_elatos WHERE NomeFornitore = '".${mysql_result($elenco_fornitori,$k,"NomeFornitore")}."';";
generate this error:
PHP Fatal error:Function name ...
-2
votes
0answers
43 views
PHP passing variable amount of parameters to an anonymous function [closed]
Hi I am very new to all this and am working with Mysql and PHP. I would like to be able to create a function from variable names that are stored in a database as strings eg.
database field ...
-2
votes
1answer
29 views
remembering variables in select box [closed]
I have This Code In HTML
<tr>
<td>
Gender:
</td>
<td>
<select name="Gender">
<option selected="" value="Default">
Gender
</option>
<option ...
0
votes
1answer
52 views
strange behaviour for $_GET
I have a multidimensional language site. When calling a page that does not exist, .htaccess will refer to 404.php in the root direction.
The .htaccess looks like that:
ErrorDocument 404 /404.php
...
-4
votes
1answer
43 views
How to access/edit/delete variables in a class [closed]
What is the best way to accomplish the following:
class foobar {
public $a = 'one';
private $b = 'two';
}
$obj = new foobar();
( here )
From ( here ) how is the following accomplished?
...
-2
votes
6answers
44 views
Outputting a PHP variable inside a HTML image tag. Syntax problems [closed]
I'm storing image names in a database and I'm trying to work out who to output them in image form when I'm displaying the database contents.
Currently I'm doing
echo $rank . " " . $row['name'] . " ...
0
votes
2answers
57 views
How to convert $_GET into a variable?
I have a problem while using $_GET.
I have a URL that looks like http://www.example.com/404.php?uri=xyz. Now I would like to read out that $_GET['uri'] and convert it into a variable that will be ...
1
vote
3answers
23 views
PHP Class Properties change after assigned to variable
Take this example. I never noticed behaviour like this:
class foo
{
public $foo = 0;
public function addFoo()
{
$this->foo = $this->foo + 1;
return $this;
}
}
...
4
votes
2answers
113 views
PHP variables randomly becomes NULL
For quite a while now we experience a very weird problem with our hosting server. Once a while (seems randomly) variables in PHP become NULLs.
In general everything works perfectly fine, but once a ...
0
votes
2answers
51 views
Displaying Dynamic Results PHP mySQL
I have a problem with the sql picking up the column name as the Value instead of the name itself.
So for example the result returned shows
SELECT ll_project.project_id, ll_project.size, ...
0
votes
2answers
38 views
MSSQL query not working after adding PHP variable to the LIMIT
This is a query that I have used successfully in a MySQL environment before. When I try it using MSSQL. It errors out on this statement:
$result = mssql_query("SELECT * FROM DriverAppInfo ORDER BY ...
0
votes
4answers
38 views
Difference between protected $_mdl and protected $mdl [duplicate]
I have seen that people use underscore before the variable even if they use the keyword protected e.g.
class Administration extends Backend_Controller {
protected $_mdl = 'model_comments';
...
0
votes
2answers
45 views
Multiple array results in a variable
I've some PHP code:
$categories = mysql_query("SELECT category_id, category_name AS categories FROM categories");
while ($row = mysql_fetch_assoc($categories)){
$columnvalues[] = ...
0
votes
1answer
53 views
How to get variable from url for .js file?
Example: Suppose the current page url(window.location.href) is http://example.com/page.html
The html page source code is...
<html><head></head><body>
<script ...
0
votes
2answers
23 views
getting/display text on external url with echo variable
Im searching on google on how to get the text of external url via php but i see a code that it displays the text on the website without adding echo and its variable. How to display the text on url ...
0
votes
3answers
23 views
PHP - Adding predefined text as well as session variable using fwrite
In the following code, i want to be able to include 'Name:', 'Age:' and 'Email:' before the PHP script writes the variables $name, $age and $email.
It seems so simple, but i just can't get it to ...
1
vote
2answers
53 views
PHP - Hold Session variable from Select Option box to every page
I seem to be having a problem and after hours of searching and messing with different ideas I can't seem to come up with this seems to be simple PHP Session problem with my Select Options menu.
All I ...
0
votes
1answer
22 views
Drupal 7: Randomize header background passing file name from template.php to the css file
My scenery: I have Drupal 7 with a Omega theme installed.
My issue: I have to set a random background for a specific zone of my css (section-header).
I have 4 separated css files because of the ...
1
vote
3answers
63 views
PHP - Passing variables from one page to another
I am trying to pass on the value of one variable from one PHP page to another PHP page, but for some reason, it's not working..
Here's my code for phpOne.php:
<?php
$x = 100;
...
1
vote
1answer
49 views
PHP: Unlink doesn't work in 'deeper' folder
I tried deleting the file from folder but it does not work...
I tried changing ' to " but it still does not work...
So I tried putting the exact value,
and it worked
...
0
votes
1answer
28 views
PHP add new array in an Two-dimensional Arrays
i want to create new instance in the $shop array , something like this :
list1 = array( "rose" , 1.25 , 15);
$list2 = array("daisy", 0.75 , 25);
$list3 = array("orchid", 1.15 , 7);
...



