0
votes
1answer
22 views
Smarty - Output HTML Variables
I cant understand how Smarty proceed with PHP string variables, with HTML tags:
If I type:
$string = '<b>Hello World</b>'
$smarty->assign('STRING',$string);
The result is Hello ...
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
2answers
47 views
Change div id on click
I have a few 'headlines' which, when clicked, I would like for them to expand/change colour etc. I shtere any way of changing the div on click of one of the headlines so that whichever one I click ...
2
votes
5answers
85 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 ...
0
votes
2answers
15 views
Escaping Variable white space
I got a html table and I'm retrieving the value of a cell with:
var orderid = document.getElementById("orderid"+row).innerText;
The value of the cell is an orderid for example 10234.
However when I ...
4
votes
3answers
289 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 multilingual site. When calling a page that does not exist, .htaccess will refer to ...
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
53 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
...
-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
58 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 ...
0
votes
2answers
34 views
Need to store JavaScript variables for use on other pages?
Here's an outline of what I want to do.
I want to store the value of a JavaScript variable in some way and then, on another HTML page, retrieve that value and assign to another different JavaScript ...
0
votes
2answers
21 views
Getting variables in the subdomain URL with htaccess
I need that when I write http://username123.mysite.com/ the username is sent as a parameter to user.php
example: http://www.mysite.com/user.php?user=username123
how can I do with htaccess? you have ...
1
vote
5answers
69 views
Javascript variable to css
I am working on a small html page. I am using javascript to get the dimensions of the screen. I need to pass that variable to a css style like below. How can I do this? Also I notice that I need to ...
2
votes
3answers
105 views
Accessing HTML unordered list elements in PHP
I'm trying to access unordered list elements in php so I can insert them in a database, I need to be able to access them via position but I'm not sure how to do this in PHP. I'm using jQuery so that ...
-1
votes
2answers
33 views
Best way in storing data from input types
I'm creating a simple database for resume' of employees and I only know the basic storing of data from input types to PHP variables.
here.
$surnamex = $_POST["surname"];
$firstnamex = ...
-1
votes
3answers
59 views
How can I fix this array table?
I have written a fairly simple array table using 3 values that are defined by the user. These 3 values determine the value of a variable. I have written similar code before but for some reason I can ...
0
votes
2answers
53 views
Can I replace placeholder text in a rendered HTML page dynamically?
I wish I could think of a better way to word my question, but basically here is what I want to do: in an HTML file, I would like to fill the body with a specific string multiple times. For example:
...
1
vote
1answer
33 views
How can I efficiently define a variable based on multiple user choices?
I am writing a program for a companies website that will allow them to do quotes on the phone, a process they have been doing by hand for some time. One of the things they sell is a ridge cap for a ...
1
vote
3answers
49 views
How to access form input value in javascript with special characters in input name?
I have a form for which I cannot change the input value field names.
One such field is in the HTML as follows:
<body>
<form id="f" method="get" action="/code/submit.php">
<input ...
1
vote
2answers
31 views
Saving fields and loading them
I am making a program for my diving coach that calculates the dive score as the judges enter their judgement. The problem I am having is all the fields clear themselves when I press submit. ...
0
votes
2answers
59 views
I have a variable in javascript that is not being set to the proper value
<html>
<head>
<script language="JavaScript">
var pizza = 0;
var tops = 0;
var count = 0;
var total = 0;
var subtotal = 0;
var tax = 0;
var cheesecost = 0;
...
0
votes
3answers
35 views
set php variable as x,y location of image in html
I am trying to set the x and y of an image in html to the value of a php variables so that the coordinate is in a loop so that the image is drawn 5 times in a row. If someone could figure out how to ...
-3
votes
0answers
39 views
php variables not called by table url [closed]
I have a file called arsip.php which has the table as shown below
<?php
$module = "arsip";
?>
<table id="dg" title="My Users" class="easyui-datagrid" style="width:700px;height:250px"
...
0
votes
2answers
53 views
Get two separate values from MySQL database, do a sum, and update one of the values
I have a MySQL database. This consists of various tables, including 'members' and 'stocks'.
I am creating a 'stock trading game' and want to deduct the amount a stock costs, from the balance a user ...
0
votes
4answers
35 views
How to retrieve dynamically created html tag value in jQuery?
So I am able to create a tag name on the fly and add it to my html
$('#'+modal_ID).attr('tag', roleName);
Will create the following html div:
<div class="modal simplemodal-data" id="modal-1" ...
-1
votes
0answers
42 views
How to get a variable to work with this script [closed]
I have been working on the script for a little project i am working on. The one bit I am working on which I just cant seem to get to work!
The calculator needs to give an answer of how many days I ...
-1
votes
2answers
45 views
I can't see generated random number
I wrote this script to combine more html file. I used the random fuction for a part of that. I see a strange thing...
@echo on
pause
CD "C:\Documents and Settings\Mauro\Documenti\Firme\ProvaMerge\"
...
0
votes
0answers
8 views
using variables in plist for rapidweaver
I'm developing a stack for RapidWeaver which uses a plist to allow users to control values in the HTML/CSS/Javascript without having to code.
I have one custom item that allows the user to select a ...
0
votes
1answer
73 views
Changing number of row's and column's with 2 dropdowns in PHP
First of all I would like to say that I am very new to PHP so maybe it is a stupid question, but there we go:
I have a two dropdown select tags that have the following code in html and php:
...
0
votes
1answer
55 views
Have no choice to duplicate a variable in javascript or else its not working
Here you can find my whole code: http://jsfiddle.net/dpbbd/
Everything is working fine, but there is something that tickle me and its this:
function drawLine()
{
var div1 = ...
-2
votes
1answer
73 views
Calling a function from a variable (PHP) [closed]
I have a website I am making as a school project, and it appears I have jumped into something a bit too deep. I'm using PHP to create a page for each array object. In each page, I want to personalize ...
1
vote
1answer
222 views
div container with variable height iframe and div box not expanding properly
I am making a basic template for a website. It has div containers of 1 header, a main menu listed horizontally below the header, the main content which is a google maps iframe (variable width) and a ...
1
vote
3answers
132 views
Using javaScript variable to add css property?
I need to be able to count on how high a HTML element(div) should be...
I'm using this javaScript code to count and add the CSS to my "Wrapper" div:
var h=window.innerHeight;
var content=920;
var ...
0
votes
4answers
220 views
Javascript not passing variable to PHP with HTML form
I have contact form, that uses Javascript and PHP.
My problem is that the javascript does not pass its variables to the PHP script. I have discovered the following:
The variables does get set in the ...
0
votes
1answer
28 views
Javascript html canvas variable as color alpha channel
how can i do the following:
alpha = alpha + 1;
ctx.strokeStyle = 'rgba(0,153,255,alpha)';
ctx.stroke();
i am trying to get the variable alpha as the alpha channel of the color.
1
vote
4answers
114 views
Adding variable at the end of URL using jQuery
So far I have done
jQuery:
function addURL(element)
{
var baseZipCode = 48180;
$(element).attr('href', function() {
return this.href + baseZipCode;
});
}
html:
<a onclick="addURL(this)" ...
0
votes
6answers
91 views
Adding PHP code in HTML which is already in PHP?
Basically, I want to add a PHP variable in HTML, with that HTML already being inserted into a constant, which is in PHP code. Here's what I mean: (obviously this code below is wrong, but imagine I ...
1
vote
4answers
111 views
Creating CSS Global Variables
Is there a way to set global variables in css such as:
@Color1 = #fff;
@Color2 = #b00;
@Color3 = #050;
h1 {
color:@Color1;
background:@Color2;
}
I have several theme stylesheets whose only ...
0
votes
2answers
110 views
passing multiple variables from HTML to Ajax than posting multiple variables from Ajax to php
I have the following form, which has 3 values. Class, Section and School. The school is selected from a drop down list that is brought from database.
(for simplicity I have not included those details ...
0
votes
5answers
63 views
how do i use an id as a variable using jQuery
I'm not sure if I'll describe this very well... but:
I have a div, and I'd like to use the id of the div as a variable in my jQuery function.
There's a variable with the same name as the ID value, ...
1
vote
2answers
53 views
JavaScript - how to have a third “sub variable”
okay, I forgot what the name for a variable list linked to a single variable already inside of a list is called, but just take a look:
function Models(Make) {
var cars = {
"Acura": ...
3
votes
5answers
104 views
Variables in CSS file
I have a Java Web Project and I want to have a split test in my application. I want to be able to select different header images according to the passed query string. For instance, if the user ...
1
vote
2answers
96 views
Passing a Smarty variable to a php file using HTML form.
I have this form inside a Smarty template file :
<form method="post" action="manswer.php">
<table border="0" cellpadding="5" cellspacing="0" >
<tr>
...
1
vote
3answers
100 views
Trying to create a Javascript link within what I believe are variables?
Solved! Thank you so much for your help.
0
votes
4answers
62 views
How to save a variable in a hta, so that after closing and opening the hta, it will be saved?
I am trying to make a hta (html application) where you can add names to an array, and then find out if a certain name is in the array. When i close and reopen the hta (or refresh for a html), none of ...
1
vote
1answer
71 views
Don't Know How to Add Existing Image Upload Capabilities to a New Form
I'm a fairly novice webmaster whom is working hard to setup a classifieds for my users. (I'm basically rebuilding a poorly written classifieds)
I had bought a cheap classifieds program so I'd have ...
-2
votes
1answer
248 views
Javascript - Global variable returns undefined after function call
I am calling a function that sets a global variable to a city name that is selected from a map by the user. I have checked and the city name is passing properly and defining the global variable. The ...
-2
votes
2answers
231 views
Get anchor tag “name” value in PHP and AJAX [closed]
I have a list of anchor tags, each one with an integer as "name" value and "#" as href value.
When I click on the link, I would like to save the integer defined in "name" as a PHP variable without ...
0
votes
1answer
108 views
Creating global variable in python 3 from functions
I was wondering why I can't access the variable: "variable_for_raw_data" after the function ends. The code is like this:
def htmlfrom(Website_URL):
import urllib.request
response = ...




