Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    PHP






SuperbHosting.net have generously sponsored dedicated servers to ensure a reliable and scalable dedicated hosting solution for BigResource.com.





Dynamic Web Pages Using The Checkbox Component


I am trying to create a page where my users choose from a list of topics with a checkbox, then have a page generated from the topics that they have chosen. How do I go about doing this or where I could find the script for this.




View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Converting Html Pages Into Dynamic Pages
I built a website in html, using Dreamweaver. I need to have a database built within these pages and the person who is going to do it told me that they will have to convert all my html pages into dynamic pages (php).

Is it complicated to do this or do I just have to save my pages in php instead of html in Dreamweaver ?

View Replies !   View Related
Dynamic Checkbox
I have a table in my database which stores locations from around the world(locations_table.id is the primary key). This table can be edited and new records added etc via a web page which is fine.

My problem lies when I create a new record in my 2nd table (via a web page) and while adding this record I need to be able to select multiple locations that the record is associated with (i.e. the use of checkboxes would seem ideal).

I can retrieve the locations and display them dynamically on screen which is fine but it is the saving of the data back into the database which I need help and advice on how to do as I believe all of the location.id's would have to be saved into one varchar field like Ƈ,2,3,4' etc.

View Replies !   View Related
Dynamic Checkbox Insert
My current problem, is actually a couple of problems I'm having. First, I have a page that lists users in my database, by dynamic checkbox. What I am trying to do is simply just insert those users that are checked into the table...seems easy, but for some reason, I can't seem to get it right.

Basically taking this first page and then want to pass it to another that will do the insert...this is where my second problem comes in. I'm passing a variable along with this and am able to get it to the 1st page, but it will not go to the 2nd page.. Code:

View Replies !   View Related
Dynamic Checkbox List - DB Update
I have a set of questions which are being dynamically output:

for($i=0; $i<count($question_array); $i++)
{echo $question_array[$i][question] .

"<input type='checkbox' name='question_" . $question_array[$i][id] . "' value='Y'' . "><br>";}

I then want to update each question in the DB. I want to loop through each question id and carry out the relevant action (either enable or disable). What is the best way to do this?? As I am dynamically generating the variable name (e.g. question_50) what is the best way to loop through these updating the relevant id?

View Replies !   View Related
Create A Type Of Dynamic Checkbox
Trying to create a type of dynamic checkbox. I would like it to represent the current state.

This check box is to check the values within a database. If the value is 1 (active) the box will be checked. If the value is 0 (inactive) the box will not be checked.

Also, Need the values to be submitted to the database as checked. I cannot recall the code I used in the past which was successful, so I am currently at a loss Code is as follows: Code:

View Replies !   View Related
Problems With Dynamic Checkbox - Need To Create Array
The problem I have concerns a dynamically created table/form which pulls in results from a user search of a mysql database. This works fine and pulls in results (title/author/isbn/price) and dynamically creates the table dependent upon how many results are found. For each result there is a dynamically created checkbox, which is bound to a unique field from the database(in this case isbn).

My problem then is: the dynamically created checkbox submits an isbn value to the next page - an order form. However I need that a user can select a number of checkboxes from the table. At the moment, each selection overwrites the other. It may be vary obvious - but I need to work out some way of storing the checkbox info in an array that gets submitted to my order form page.

at the moment the code for my checkbox within the html form is:


<input name="isbn_input" type="checkbox" id="isbn_input" value="<?php echo $row_Rs_panozzo_search['isbn']; ?>" />
</font></td>

This works passing one value through to my order form, but I need to set it up so it passes multiple values.

View Replies !   View Related
Form Data Dynamic With Checkbox- Need To Insert ALL Selections Into DB
I have a form that I am generating line items with checkboxes dynamically from a Database. When someone checks more than one box, only the last one is recorded to my database history. I need to record ALL selections made by the check boxes. Code:

View Replies !   View Related
Dynamic Pages
As big as the net has got over the years, we all depend on huge databases of information to be displayed in pages, either it be links or articles. So if I wanted to show informaiton from a database on a page that a person would click on a link to get to. How would I do so without using www.blabla.com/linkpage.php?userlink=1 . Since search engines are steering away from certain characters like ? and & in a link. So getting a page crawled can be impossible. So is there a way to do this without using those chartacters ?

View Replies !   View Related
Dynamic Pages Why?
I'm fed-up of having to edit each page individually every time I edit the index page design.

View Replies !   View Related
Dynamic Or Static Pages?
I just created a new site, where I have my products stored in my MySQL database. I've used mod-rewrite to parse out the "brand" and "productname" from my URL's, so they look more SEO friendly...ie:

http://example.com/brand-product.php

Problem is, I'm not sure how to handle special characters in the URL... as all of my URL's now have #134;, reg;... and other decimal and entity equiv's in them.

I can only think of one way around this, which is by using static pages... which I'm hesitant to do(have php spit out a product page for each product).

View Replies !   View Related
Dynamic Time On Different Pages
how would you create a date and time format in your page? how would you make this date and time not to change back to the previous time when you click the "BACK BUTTON" ?

Meaning if you have a time like this: 13 of August, 2007 08:11 PM  in one of your pages then when you continued it to the "next page" you will have assuming that time changed to this, 13 of August, 2007 08:12 PM and i forgot to do something in the previous page, the date and time format returns to the old time stating like this: 13 of August, 2007 08:11 PM  when you could have: 13 of August, 2007 08:12 PM the updated time. how would you to that not having the old time or previous time in all of your web pages withour returning to the old time? I do hope you undesrtood what i meant?

View Replies !   View Related
Dynamic HTML Pages Using PHP
I have a database of business details which are output using a page called displaydetails.php by passing the id of the records: for example displaydetails.php?id=123

Rather than having the details displayed in this way, is it possilble to generate a HTML page dynamically using PHP?

View Replies !   View Related
Static Pages Instead Of Dynamic
There must be millions of dynamically generated html pages out there now, built by on-the-fly php code (and jsp, perl cgi, asp, etc). Programatic page generation is transparently useful. But querying a database, negotiatinig lots of if-then-else logic
and echo'ing html code out on port 80 every time a page is requested has to be a huge waste of resources.Why not use that logic to print static html instead of dynamic?

The few pages that need to be dynamic (perhaps the results of a database query) probably represent only a small fraction of the total number of pages that are rendered by on the fly code. Seems to make sense to me. All you need to do is work the output directories into your code logic somehow, and do a few one-time-only mkdirs before printing out the static html. Am I missing something? Why is it so little open source page generation software acually works that way?

View Replies !   View Related
Caching Dynamic Pages
I have spent the weekend reading articles about how to creat cached pages
for your web application to increase speed and reduce cpu/server load.

However, I honestly don't know what is the best/most current technique
being employed. Most of the articles I read were several years old, including
one on ZEND that was almost five years old.

View Replies !   View Related
Getting Dynamic Pages Indexed
I would like to know what the best way to get my dynamic pages indexed by Google, Yahoo, and MSN are. Here are some options that I thought of:

1. Getting rid of all the _id tags in the URLs, so product_id=1000 becomes product=100
2. Change the "?" to "/" so www.example.com/store?product_id=1000 becomes www.example.com/store/~product=1000

3. Using the apache mod rewrite to change the URLs, so that I get URLs like: www.example.com/store/product/1000
4. Creating a static HTML map that points to all the dynamic URLs on my site
5. Creating a static HTML *version* of every dynamic page on my site

Someone has suggested each of the 5 steps before. As you can tell, each step becomes a little more work, and #5 will require some real programming. Does anyone know which of these are necessary?

View Replies !   View Related
Best Way To Add Titles To Dynamic Pages
Most of the pages on my site follow the simple pattern:

<?
require('scriptfiles/header.inc');
?>

HTML PAGE

<?
require('scriptfiles/footer.inc');
?>

This of course means that every page has the same title. Well, now I want to change the titles for all the pages on my site individually, to reflect what they contain. Code:

View Replies !   View Related
Searching Dynamic Pages
I got a question about letting googles or other search engine to search some dynamic pages. I read the technical support from googles, it says " Don't use "&id=" as a parameter in your URLs, as we don't include these pages in our index " , however, when I browsed the web, I found that some of the pages containing &id or.

View Replies !   View Related
Dynamic URLs On Pages
I change a script that changes urls within dynamically generated pages.

$MyReplaceStr = "¦http://([0-9]{1,3}).([0-9]{1,3}).([0-9]{1,3}).([0-9]{1,3})/x(.*)&" . $MySite . "¦Ui";

$GetPage = preg_replace(
$MyReplaceStr,
$MySite."/site/".$site,
$GetPage
);

I need also to be able to remove the "¦http://([0-9]{1,3}).([0-9]{1,3}).([0-9]{1,3}).([0-9]{1,3})/x(.*)&" part from the remaining external links (the ones without $MySite which is just my www.mysite.com domain) that have it. How would I add that onto the script and to avoid conflict how would I exclude the other one within that? I'm sure someone understands.

[edited by: Cyrus255 at 9:48 am (utc) on Nov. 8, 2006]

View Replies !   View Related
Generating Semi-dynamic Pages?
I set up my index page and a couple of others as semi dynamic pages like he suggested in the advanced php section of his tutorial. Anyway everything was working fine until I put an .htaccess file in that folder, it is just a fairly standard .htaccess that password protects the file,

but the trouble is that now when I try to generate a new index page instead of using the path http://localhost/admin/index.php when looking at the template (index.php) which it needs to do for the php on the template to run, it goes to c:/phpdev/www/admin/index.php so as the browser is not used the php is not run and I get a load of code on index.html, I don't think I've explained this that well so I hope the code and comments below help.

This is part of the code used basically is uses $srcurl as a source file then puts into a variable and through fwrite etc it puts it all in a temporay file then finally writes it to index.html.

<!-- generateindex.php -->
<?php
$srcurl = "http://localhost/admin/index.php";
$tempfilename = "tempindex.html";
$targetfilename = "index.html"; ?>

The problem is that with the .htaccess forcing it to use the path on the harddrive rather than the url none of the PHP from the tempate index.php gets converted.

View Replies !   View Related
Dynamic Pages Vs Search Engines
I have a how-to-do-it manual like site,
related to fishing. I want to add a new
interactive question/comment feature to each
instructional page on the site.

I want (registered) users to be able to add
comments at the bottom of each page, similar
to the way the php, mysql, apache manuals work.

PUNCHLINE_A:
I don't want to revert to a system of dynamic links
that look like "pagePainter.php?page_id=123"

I did that for a while. But every time I edited
the site (reloaded the database) all the page_ids
changed, and then voila I had stale links spattered
all over my Google search results--because the
same page now had a slightly different page_id.

To avoid that I could associate each page with
a unique lookup string that is its server-side file path:

pagePainter.php?page_key=/pages/manual/chapter1/engine_repair/carburetors

Then the keys wouldn't change everytime I added a few new pages
to the system, and reloaded the database. Then my Google search
links would remain constant.

PUNCHLINE_B:
Will the search engines spider and index links that look like that?
Or will I have to make a system that spits out the entire page as static
html, each time a registered user adds a new page question or comment?

Or should I put the comments box in an iframe, which is also a spidering
can of worms?

View Replies !   View Related
Dynamic Pages With Search Engines
We know search engines cannot index many database-driven pages basically any page with a '?' or '&' in the URL, and i want to ask if is there en way to transform that simbols in / for example.

View Replies !   View Related
Cached Pages And Dynamic Content
I am currently building a caching mechanism into my own development framework.

Basically whenever a page that is marked in the DB as cacheable is requested the controller creates the cached version of the page and returns it , on subsequent requests the cache is displayed.

Whenever a content change is made in the DB the relevant cached page is deleted ready to be rebuilt & cached with the new content on the next page request.

Thats fine for many pages , some pages are too dynamic for caching to be useful (shopping carts for example);

.................

The issue I am grappling with is .....

A product information page, mostly static and perfect for caching , but lets say the user has something in thier shopping cart I want to also show a 'checkout' now link or change the 'buy now' links to 'add to cart' etc.

e.g. some small content will change and so I can't use the existing cache.

the choices to date seem to be ...

View Replies !   View Related
Template, Dynamic Pages Question
I have a content page, and a template page, ok. Now... I want to make one page for most of the dynamic aspects of my site (top sides and bottom portions and title). Questions on that...

How do I call it up, from the content page... or from the template? If the content page... where... and if the template.. where... (i.e. after the template is called, before the variables are called, etc). Code:

View Replies !   View Related
Working On Dynamic Pages Without Uploading Them To The Server
I use dreamweaver, and when I work on my PHP pages, I upload my pages to test them out.

I'm going to be traveling a lot, and I'm getting a laptop. I'll be without internet access for long stretches of time, but I would still like to be able to work on my dynamic pages.

Is it possible to somehow setup my laptop to allow me to work on my PHP pages and to test them out without internet access? That way, I can get all my pages tweaked how I want them, and when I do have internet access I can upload them to my server without having to worry about bugs.

View Replies !   View Related
Dynamic Pages Without With Directory Structure Instead Of Parameters
Sorry for the confusing thread title, I wasn't sure how to call this.

This is my issue:

I design most of my sites with a single index.php file that takes
parameters to decide which pages to include: something like
www.blabla.com/index.php?dir=a&page=b which will include some file in
say ./a/b.html, but will have all the headers and footers that are
defined in index.php.

It could also work that way to have a b.php file in the ./a directory
that would include headers and footers but then I'd have to include
those headers in every single page I write which seems like too much
overhead.

I was fine with the way I did it but then I read that this is not good
practice, search engines don't like sites with parameters they rather
want the www.blabla.com/a/b.php form.

Is there a way to get this done nicely? How do professional sites solve
this?

View Replies !   View Related
Highlight Active Link On Dynamic Pages
I am trying to customize a site that is I quess what you would call dynamic. The tool creates pages, but there are no real pages all stored in the database. The pages are all index.php....pageid=1, etc. Code:

View Replies !   View Related
Dynamic Webpage Titles For Multiple Pages
I have hundreds of "search result" pages on my site that I have mod-rewrited into Google-friendly urls. Nice.

However, each page is titled in a very generic way:

eg. Cookies Page 1, Cookies Page 2, Cookies Page 3, etc.

As I can't really grab keywords from the page content (they are just random results), I want to be able to pull a selection of keywords from a seperate file and print them as a permanent Title on each page: Code:

View Replies !   View Related
Caching Dynamic Pages Dependant On User Status
I am new to caching dynamic pages. All I knew was how to avoid caching.

My dynamic pages have on top of them an html header which shows the status of the user logged/not logged.

I would like to cache the pages and force re-cache if there is a change in the user's status.

I guess the must-revalidate has to be always present. I use a last modified date which comes form my database. I think Cache-Control: must-revalidate depends on the last modified date... am I right?

Should I change that modified date to the time the user logs off or on?

Is it ethical checking the user agent for bots? When dealing
with bots should use the real last modified date.

View Replies !   View Related
Oracle Spooled Files And Decode To Dynamic Pages
As a bit of a PHP newbie I have a question. On our Intranet we have
staff listings which we want to move to dynamic pages. As part of the
SQL in the original pages we have a SQL decode (see below...)

I have been trying to replicate this approach in PHP but have come
across no logical solution. I am assuming that there will be a PHP
based solution? Code:

View Replies !   View Related
Create Dynamic Return Paths As Links On Site Pages.
I would like to create dynamic return paths as links on site pages. For example, there might be a link to the whet stone page on both the chisel and plane pages. If my viewer came from the plane page, I'd like the return path to indicate "home->planes->whet-stones", appropriately linked. Likewise if from the chisel page, "home->chisels->whet-stones".

Above the immediate back link, normal site layout logic would apply. Should the referer page be off site, site layout would rule. This doesn't appear to be particularly difficult.

View Replies !   View Related
Typo3: Generate Dynamic Website, Show Only The Pages That Include Content
i want to create a web form where someone can do some input or pick
strings from select boxes. after that the person can click a preview
button and a website will be generated dynamically. so i thought i
should use typo3. first of all i created a html-template. then a page
tree with all the sites that could possibly appear. in the end only the
sites with content, will be shown. all of this must happen
automatically. so i need a php script or a typoscript that compares the
"pages" table with the "tt_content" table. after that the attribute
"hidden" in the "pages" table should be "true" for the pages that
doesn't contain any content.

does anyone have an idea if this is possible or if typo3 is the right
choice?

View Replies !   View Related
Component Strategy?
I have a home grown CMS built in PHP/MySQL (inspired by phpMySite). All management/site building is done through a web interface. Now I want to add functionality such as "check my email", "display rss feed", etc... these different components would then be associated w/ each page. For example, on the home page, show the "check my email" component.

I'd really like more advanced user's opinions on how best to implement this. I've thought about storing each PHP component directly in MySQL and then eval() 'ing it on it's way out, but I'm assuming I'm adding alot of process overhead.

I could simply create each component as a PHP .inc file in a component directory on the webserver and store meta data about each component in MySQL (i don't really like those loose associations though).

The goal is to let the site maintainers (not myself) pick and choose what components they want on what page. I'm not looking for THE answer, I'm just looking for opinions from those with more experience.

View Replies !   View Related
What Chart Component Is This Php Site Using?
I like their charts very much, I am trying to find out what charting
component they are using.

View Replies !   View Related
Component Based Php Architecture
I'm a java developer trying to get acquainted with PHP.

In java web development, the most popular web applications framework is
Struts, which is equivalent to Smarty.

The problem with both is that they don't give you a true rich web
application support. What I'm looking for is the equivalent of JSF,
tapestry etc.: creation of application components, registering
listeners to components, lifecycle management, navigation, exception
etc.

I would like to request for some pointers to such frameworks (if exist)
that are based on PHP.

View Replies !   View Related
Forward A URL And Change A Component
I've just had to move a MediaWiki installation from one area of my site to a subdomain on another area. I need a way to forward URLs, so that whenever anyone requests a URL for the wiki at the old location, they are automatically forwarded to the URL on the new location. The system would need to add a subdomain, but also change the article pointer. For example: Code:

View Replies !   View Related
Comment Component With Nested Replies
I'm looking for a simple tutorial on how to create a comment section for a website that allows users to reply to previous comments, indenting them much in the same way a site like slashdot does.  I have a working script for a simple list but I'm not sure how to write a recursive function to deal with the rest of it. I've done quite a few searches for previous solutions but I get the feeling I'm not using the right terms.

View Replies !   View Related
Looking For Username Password Login Component
I'm developing a webapp that needs to track users and provide each user
with a view of their own data. In other words, it goes beyond merely
protecting certain areas of the site. The application needs to know WHO
is logged in and show them their own blog, uploaded documents,
reminders, etc. Code:

View Replies !   View Related
AJAX Auto Complete Component: AutoAssist 0.8
AutoAssist is a AJAX auto complete component that writing AJAX features
like Google Suggest easy for developers who don't speak browser
quirks as a second language.

View Replies !   View Related
Free Component With 3D Bar Chart Plot Ability?
I am looking for a free component with 3D bar chart plot ability.

View Replies !   View Related
Need Pdf Search Engine And PDF Conversion Component/software
Our client has certain requirements:

1. Searching through the PDF files on their webserver and additionally other popular file formats e.g. DOC, TXT etc... besides offcourse HTML and PHP files.

i want to know which is the best search engine available for this purpose? The search engine should be enterprise ready.


2. Converting the web page to PDF format on the fly.

Basically a user will be viewing the reports on the web page, dynamically generated by PHP from the MySQL database, where the user will have the option to download them to their computer in PDF format.

which is the best php software/component available for this purpose?

Both of the software mentioned above should be easy to learn and implement and should be meant for a medium-big enterprises.

The platform will be as follows:
O.S. : Windows 2000/XP
Web Server : Apache
Server-side language : PHP

I would really appreciate any info in this direction as to which is the best softwares/components (Commercial or freeware) available for both the purposes as mentioned above.

View Replies !   View Related
Component 'MSCOMCTL.OCX' Or One Of Its Dependencies Not Correctly Registered:
I've previously installed PHP on my Win2K machine at work with great success. Now I'm trying to load it onto my laptop (also Win2K) and I get the following:

Component 'MSCOMCTL.OCX' or one of its dependencies not correctly registered: a file is missing or invalid

Does anyone have any ideas about how I might fix this? PHP doesn't work on the laptop, and IIS/Windows/etc. were installed the same way on both machines.

View Replies !   View Related
Pull Images From The Database Randomness And Insert Them Into The Flash Component Of The Site.
I currently have a flash application that rotates images. I also have PHP pages with a MySQL backend. I would like to pull images from the database randomness and insert them into the flash component of the site.

A couple questions:
1) Is there an easier way to do rotating images then using Flash and PHP to pull images from the MySQL backedn?
2) How do you pull completely random images?
3) Anyone have any tutorials or code examples how to implement this with flash and PHP?

View Replies !   View Related
If Yes, Checkbox Is Checked, If No, Checkbox
So I have this code that if one of the entries columns says 'yes' then the checkbox should be checked and if the column says 'no' then the checkbox should be unchecked. My code isn't working. Code:

View Replies !   View Related
Avioding Expired Pages, & Carrying Data Accross Multiple Form Pages
I have a checkout/order form that consists of 6 pages, all PHP. The are linked to one another, like, after the user finishes page 1, they proceed to page 2, etc... The first two pages are submitted by a GET link, so those are not in my question. The next 4 are submitted using a <form>. Throughout all of the pages, i would probably have about 25-30 variables, things that the user has to fill out. I have two questions,

1. What would be the best way for me to keep track of all the data moving throughout the pages, like storing it from page 4, and i still need to access it on page 6.
2. I don't know if anyone could help me here, but does anyone know of a way to code around those ugly "page expired" pages, because of a submitted form. If a user needs to go back, which most likely they will, is there some sort of way for me to skip the expired page?

View Replies !   View Related
Convert The PHP Pages To HTML Pages
how to Convert the PHP pages to HTML pages. provide me the specificaly coverting Codes or Scrpit to Converted the PHP Page to HTML page. If there in any software to convert the PHP Page to HTML pages please specify.

View Replies !   View Related
Custom Error Pages For Web Pages?
A site has the following htaccess commands in it for custom error pages:

ErrorDocument 400 /error.php?code=400
ErrorDocument 401 /error.php?code=401
ErrorDocument 403 /error.php?code=403
ErrorDocument 404 /error.php?code=404
ErrorDocument 405 /error.php?code=405
ErrorDocument 500 /error.php?code=500
ErrorDocument 501 /error.php?code=501
ErrorDocument 502 /error.php?code=502
ErrorDocument 503 /error.php?code=503
ErrorDocument 504 /error.php?code=504

So, there is one error page with php code in it. Depending on the error code that Apache sends, it will display the correct error message on the website.

However, if I type in http://www.domain.com/fdfdsfsdf.html I will get the error page correctly. However, if I type http://www.domain.com/fdfdsfsdf.php, it does not use the custom page, but using the default apache not found page. Is there something else I need to add to the htaccess file to make php errors use the custom page?

I was told by the owner of the hosting company I work at that every time apache sees a .php extension, it automatically assumes it is a script and will not parse the correct error message for it.

Does anyone know how to get .php extensions to use the custom error page on an apache server? Is there something else I can add to the htaccess file to facilitate this?

View Replies !   View Related
Dynamic Variables To Dynamic Form
I have a form method="post" generated dynamically bu a "for".

<form action="" method="post">
<?php
$total = 10 //custom value
for($i=1; $i<=$total; $i++)
{
$subdata=explode("][",$data[$i]); 
echo "<div>$i:
<input type="text" name="opt[$i]" size="40" maxlength="40" value="$subdata[0]" />
<input type="text" name="img[$i]" size="25" maxlength="50" value="$subdata[1]" />
<input type="text" name="num[$i]" size="4" maxlength="4" value="$subdata[2]" />
</div>";
}
?>
<input type="submit" value="Submit" />
</form>

It's ok in php 4, but in PHP 5 doesn't work.
How to generate the variables to make the code php5 compilant? Code:

View Replies !   View Related
Sending People To Specific Pages That Are Coming From Specific Pages...
I want to show some specific pages to people that comes to my site from
specific urls, I know the variable $_SERVER['HTTP_REFERER'] will be
used but how?

For ex if the visitor comes from a site that is like:

I want to send this person a specific.php . I used below code but not
worked:

<?php

if($_SERVER['HTTP_REFERER'] == "www.cominghost.com" ||
$_SERVER['HTTP_REFERER'] == "cominghost.com" ||
$_SERVER['HTTP_REFERER'] == "www2.cominghost.com"){

// Specific page html goes here

}
else
{
header("Location: index.php");
}
?>

This code not worked for some cases like if the visitor comes from
http://www.cominghost.com/account/targeturl.php or
http://cominghost.com/account/targeturl.php Ok I know the if statement
not working but How?

View Replies !   View Related
Including Pages In Pages
When including a page inside another (include('page.php')), is it bad for
the second document to also have <head> and <body> tags etc? Im using
iframes currently,

and it works, but getting the page to match the content
is kind of a javascript hack that only works after the page is loaded, not
counting the images. So the new page loads, doesnt fit the old page size,
and its changed.

View Replies !   View Related
Checkbox And SQL
What im stuck with at the moment is how to update the SQL database with the new information acquired from a set of check boxes.

What i´ve done so far is to create the checkboxes and got the information from a table which checkboxes is needed and pre check it if it is already enabled. i have two rows in the database 1. Module_Name (name of a module) 2. is_enabled (is the module enabled 1 or 0). Code:


View Replies !   View Related
Checkbox Again
i want to delete multiple items but at the same time i want the deleted items to be insert into another table. it's like backup the deleted items well, so far, i've got the delete part but sadly, still can't work with the insert part.

View Replies !   View Related
More Checkbox
I'm trying to create a data entry and update form(s) that allow the user to select a checkbox specifying if the record is ready for enrollment.

When I go to modify the values I cannot get the checkbox to 'stick' if it was already checked and updated as checked. The next time I open the record it is still unchecked. Code:

View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved