Tagged Questions
0
votes
1answer
498 views
HTML/Javascript/PHP Country and State List
I have a script that is getting the country the user selects and then puts the corresponding states in the state box.
Here is my Javascript code in the head:
<script type="text/javascript" ...
0
votes
4answers
69 views
How to manage developing an application with git? [closed]
I am stuck on this idea.
If I develop an application, let's say a PHP forum or cms.
Most PHP forums and CMS' have these things (plus some) in common:
They include an installer directory.
Once ...
1
vote
1answer
63 views
Keep state of variable PHP without querying
I'm working on page with articles. We can vote on each article. I want to display all articles and above average voted articles on separate pages. My current scenario is something like this:
//For ...
0
votes
2answers
66 views
HTML select based off of user info for state
<select name="state" class="input-small" selected="<? if(isset($_SESSION['user'])){ echo $row_login['state']; }?>">
<option value="AL">AL</option>
<option ...
-1
votes
2answers
112 views
PHP Script for States to Abbreviations Not Working Correctly
I'm not sure what's wrong with this script. When I run it it only gives me the first letter of the abbreviation.
I didn't write the abbreviation part, I found that online. The only parts of the ...
-1
votes
2answers
73 views
Does Yahoo support state parameter for oauth?
Google and FB correctly support "state" parameter for oauth. How about Yahoo ?
How to pass custom data across requests in Yahoo oauth process ?
0
votes
2answers
85 views
php maintaining state
This will be a newbie question but I'm learning php for one sole purpose (atm) to implement a solution--everything i've learned about php was learned in the last 18 hours.
The goal is adding ...
0
votes
1answer
71 views
Maintaining search form input
I'm building a CRUD application and need to implement two forms of search:
The basic search function accepts a keyword and searches every column in the database table for that particular keyword. The ...
2
votes
1answer
316 views
Keep jQuery accordion state on postback with PHP
I am using jQuery UI's accordion as a subnav on a site I am building. The problem is that I haven't been able to find a good way to maintain state between pages. I'm wondering what the best way to do ...
0
votes
2answers
293 views
how to retain the state of a checkbox after server side validation in php?
I have a form with various fiedls (Name, email, password, etc..). It also has a set of 5 check-boxes. As i have to update a database i prefer doing server-side validation and i am using php.
If a ...
0
votes
4answers
204 views
How to save a form state from a jquery that disables my submit button when timer ends?
I have a javascript running in my site that runs down a timer to zero and then displays a message and disables my submit button to prevent more data being inputted into my database. I have got it to ...
0
votes
0answers
817 views
Country state dropdown in php and javascript
I read almost all titles which are related my question; however I couldn't figure out what I am doing wrong.
I have 2 tables (country and states), what I am trying to do is retrieve data from states ...
0
votes
0answers
529 views
How can I achieve Session Replication using PHP/Apache
Is there a way to store/manage PHP sessions in a similar way that the IIS (Session State Service) ?
I want to have multiple front end web servers for an multi domain e-commerce platform and manage ...
0
votes
2answers
171 views
What is the proper way to pass a variable when page refresh/reload using php?
I've a php page that refreshes every minute and on it an php array global variable that I use to compare values (before and after a page refresh).
But I've a problem, whenever the page is refreshed, ...
1
vote
0answers
161 views
iframe rendered by jsp within php site
I have a php site and a iframe which is rendering content from jsp site.
Can that iframe(link to jsp) after loading the content allow form submission, state management etc within the iframe?
What ...
0
votes
6answers
224 views
POST variables disappearing when a link is clicked
I just setup some pagination for a search, and the search uses POST variables to define what to search for etc. In my URL I can set the pagination offset like this search/OFFSET, and my links in the ...
1
vote
2answers
534 views
Storing objects between requests in PHP without serialising
I am writing a stateful web application in PHP in which the state potentially contains lots of objects. At this moment, I am keeping all these objects in $_SESSION and have them serialised at the end ...
0
votes
0answers
127 views
I need a PHP + mySQL based solution which RETURNS the CITY & STATE when provided with a ZIP Code
I'm looking for a PHP + mySQL solution which returns the CITY and STATE as a JSON reply, when provided with a zip code as a parameter.
For example:
...
0
votes
1answer
669 views
how to save object state in php
i have 3 files
class.myclass.php
test1.php
test2.php
class.myclass.php contains
class myclass
{
public $value;
function assign($input)
{
$this->value=$input;
...
0
votes
1answer
368 views
Retain scroll location when navigating back from another page via browser 'back' or link back?
I'm having some issues with maintaining scroll bar locations.
The Background
I have a horizontal image browser in one of my pages. It lazy loads its images, so it can potentially scroll through ...
1
vote
2answers
939 views
Models with persistent state between HTTP requests
I want to create a web application with a model that persists between HTTP requests. From what I understand languages like PHP treat each HTTP request as a brand new connection except for some global ...
0
votes
1answer
258 views
selected state mysql array
I am trying to combine a table select output with a piece of code I found to keep the selected state:
<select>
<?php
$desired_option = 'arsenal';
$arr = array('arsenal', 'aston villa', ...
0
votes
2answers
319 views
Problem in my form submit flow, form data is too big
Here is my flow:
Form A post data to input.php as B
If data is invalid, B send data and
error code into cookie and redirect to
referer url (now is Form A)
Form A read data, error ...
4
votes
3answers
231 views
Method return status: bool, string, const… (PHP)
This question: http://stackoverflow.com/questions/356248/best-way-to-return-status-flag-and-message-from-a-method-in-java is similar to mine, however I would do it in PHP, not Java (which could make a ...
2
votes
3answers
709 views
PHP application state
In ASP.NET I can store both session and application state. Is the same true of PHP? I can't seem to find information on application state.
If not, what are best practices for shared state ...
4
votes
2answers
395 views
Is the state design pattern overkill for a PHP form?
I have a page that, when accessed displays a table of information related to a video:
Embed code
Title
Description
Current gallery
Thumbnail image
This information is read-only when the page is ...
0
votes
3answers
324 views
PHP Beginner: How to pass PHP variable from one PHP code segment to another?
I have index.php which uploads a file to server and sets several PHP variables (like $target_folder_and_file_name).
index.php also has the following line (it was originally index.html):
<script ...
9
votes
3answers
1k views
How to persist objects between requests in PHP
I've been using rails, merb, django and asp.net mvc applications in the past. What they have common (that is relevant to the question) is that they have code that sets up the framework. This usually ...
3
votes
1answer
287 views
PHP accelerators and static fields
I would like to know about static (class) field representation within PHP interpreter.
For example, when you load a class in Java, static fields will be associated with that Class object; that means ...
1
vote
2answers
1k views
PHP, Session State, Redirecting “Home” Link Based on Referrer
Commonly, a website has a menu bar with links to different pages of the site— Home, Page A, Page B, etc..
Let’s say you have a site with address http://www.example.com. 99% when someone types that ...
0
votes
2answers
51 views
changed object after storage or object-state used
Example:
class UserStorage {
public function addUser(User $user) { //saves to db }
}
class User {
public function setName($name);
}
What if I add a user to the user storage and later ...
0
votes
2answers
122 views
Saving the State of a System
A very flowery title indeed.
I have a PHP web application that is in the form of a web based wizard. A user can run through the wizard and select options, run process (DB queries) etc. They can go ...

