User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 425,879 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,223 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 40 of 52
Search took 0.01 seconds.
Posts Made By: JeniF
Forum: JavaScript / DHTML / AJAX Jul 5th, 2008
Replies: 0
Views: 677
Posted By JeniF
delete and refresh search results

Hello all..I am working on a search script that I am using AJAX and dynamic html to show results within a table. based on the users search criteria, I display the results and a summary of those...
Forum: PHP Mar 13th, 2008
Replies: 1
Views: 285
Posted By JeniF
Re: Help with parse and undefined errors

please post the codes that are referenced in the above error. We can't help you with out seeing the scripts.
Look at the lines that are giving you the error to see what the code contains.
Forum: PHP Mar 13th, 2008
Replies: 2
Views: 351
Posted By JeniF
Re: Multiple search

you can also look at this post for some additional help or options
http://www.daniweb.com/forums/post553273.html#post553273
Forum: PHP Mar 8th, 2008
Replies: 9
Views: 676
Posted By JeniF
Re: Small catalog problem

Place a hidden field in your script relating to the item in the record set that you are calling, and use something like this:

<a href="viewprod.php?ID=<?php echo $rs['ID'];...
Forum: PHP Mar 7th, 2008
Replies: 11
Views: 511
Posted By JeniF
Re: checkboxes problem

Hi,
Even though it is a fairly advanced script you could try looking at this post:

http://www.daniweb.com/forums/thread111225.html
or you can do a search on checkboxes and find a few additional...
Forum: PHP Mar 7th, 2008
Replies: 3
Views: 502
Posted By JeniF
Re: Getting information from database and display on the screen

Hi,
Try removing the

ob_start();
at the top of your code.
Also, shouldn't your variables be...
Forum: PHP Mar 5th, 2008
Replies: 3
Views: 734
Posted By JeniF
Re: PHP codes to search MySQL

The script I am posting is a fairly advanced search page using left joins on tables, but I think you can grasp what the script is doing. This search allows for 3 different types of search methods...
Forum: PHP Mar 4th, 2008
Replies: 11
Views: 768
Posted By JeniF
Re: Image in database

Hi...something like this may help get you pointed in the right direction

<?
php require_once('/Connections/connect.php');

$colname_rsProject = "-1";
if (isset($_GET['ID'])) {
$colname_rsProjects...
Forum: PHP Feb 28th, 2008
Replies: 7
Views: 768
Posted By JeniF
Solution Re: Checkbox Arrays ARGH!!

Here is the code that I used and tested:

<?php require_once('../Connections/mambo.php'); ?>
<?php
error_reporting(E_ALL ^ E_NOTICE);
session_start();
if((isset($_POST["Submit"])) &&...
Forum: PHP Feb 28th, 2008
Replies: 7
Views: 768
Posted By JeniF
Re: Checkbox Arrays ARGH!!

Hey there,
Yes after my "Brain-Cloud" left me for the day, I realized that I needed to delete the original values stored and reset them with the new values.
I managed to get this done.
Thanks for the...
Forum: PHP Feb 27th, 2008
Replies: 6
Views: 365
Posted By JeniF
Re: OPTION problem

Not sure if your porblem is solved yet, but here is something I use all the time for drop downs.
First get your connection string going. preferably using an include.
then use the following code,...
Forum: PHP Feb 27th, 2008
Replies: 7
Views: 768
Posted By JeniF
Re: Checkbox Arrays ARGH!!

Thanks for the input. I do see that the "if" is missing as I was doing the "cut and paste thing".
I understand what you are saying there, but unsure right now on how to exactly write what I need it...
Forum: PHP Feb 27th, 2008
Replies: 9
Views: 497
Posted By JeniF
Re: Array values for validation

OK...here it is in all it's "Glory"

<?php require_once('../Connections/training.php'); ?>
<?php require_once('../Connections/mambo.php'); ?>
<?
error_reporting(E_ALL ^...
Forum: PHP Feb 27th, 2008
Replies: 7
Views: 768
Posted By JeniF
Help Checkbox Arrays ARGH!!

Hello all,
I have a form that contains checkboxes to update a database with either "Yes" or "No" based on the user selection.
The check boxes are in an array with the values set to a...
Forum: PHP Feb 27th, 2008
Replies: 9
Views: 497
Posted By JeniF
Re: Array values for validation

I have been able to sort all this out. If anyone is interested, please let me know and I will post he code.
Forum: PHP Feb 22nd, 2008
Replies: 9
Views: 497
Posted By JeniF
Help Re: Array values for validation

I have a form that contains a repeating region that allows an admin to set permissions on menus. I have a select box named "menuassignmnets[]" that I am displaying the options of "", "Yes" or...
Forum: PHP Feb 21st, 2008
Replies: 9
Views: 497
Posted By JeniF
Re: Array values for validation

menuassignment is an array for insert/update

<select name="menuassignment[]">
<option value=""
<?php
$OK = isset($_POST['menuassignment']) ? true : false;
if ($OK && isset($missing) &&...
Forum: PHP Feb 21st, 2008
Replies: 9
Views: 497
Posted By JeniF
Re: Array values for validation

please forgive me, I should have clarified myslef and code a bit better.

the question about
$expected = array('menuassignment');
This resides in a part of the error checking as shown below. I...
Forum: PHP Feb 21st, 2008
Replies: 9
Views: 497
Posted By JeniF
Help Array values for validation

Good day all!
I have been working on a project that requires me to to the following:
Select a user from a list, on submit go to next page.
The next page contains the session variable $id of the...
Forum: PHP Nov 13th, 2007
Replies: 5
Views: 895
Posted By JeniF
Solution Re: storing the selected value of a drop-down list

I have built a dynamic select box for something like this.
Here I populate the select options with information from a table:
(I also created the "sticky" to hold the users input upon error...
Forum: PHP Nov 12th, 2007
Replies: 3
Views: 2,567
Posted By JeniF
Solution Re: how to pass a php array to a sql query

Your request sounds a bit confusing, but I did a quick project that accomplishes something that you may be able to at least work with.
Please note this took me about 15-20 mintes to complete and...
Forum: PHP Nov 10th, 2007
Replies: 22
Views: 1,674
Posted By JeniF
Re: T_STRING error? i cant find it

Look through code for additional errors as notated between lines
////////////////
///////////////
Forum: PHP Nov 10th, 2007
Replies: 22
Views: 1,674
Posted By JeniF
Re: T_STRING error? i cant find it

<div class="side"><?php if (have_posts()) : ?>
Notice the : after posts())
change this to ;
Forum: PHP Nov 7th, 2007
Replies: 3
Views: 1,178
Posted By JeniF
Re: problem comparing strings

SQL Server stores the datetime in a certain manner. The variable $date1 that you have set looks to be in the incorrect format.
Take a look at this to get a bit more information....
Forum: PHP Nov 7th, 2007
Replies: 2
Views: 1,614
Posted By JeniF
Re: mailer.php almost works :|

try placing the variables in single quotes like this:

$full_message = $_SERVER['REMOTE_ADDR'] . "\n\n" . '$ccomments '. "\n\n" . '$cname' . "\n\n" . '$cphone' . "\n\n" . '$cstreet' . "\n\n" . '$cpo'...
Forum: PHP Nov 7th, 2007
Replies: 6
Views: 3,042
Posted By JeniF
Re: Tearing my hair out over PHP mysql update script

I don't see anywhere in your form the value of 'id'
Place a hidden field in your form to hold this value so the SQL statement will read the value and update.
Forum: PHP Oct 27th, 2007
Replies: 1
Views: 1,872
Posted By JeniF
Solution Re: multiple update with text boxes

I am using a similar approach to a from I have where the admin must assign applications access to users. I have error checking in the form to avoid duplicates, but at least it should give you an idea...
Forum: PHP Oct 21st, 2007
Replies: 1
Views: 470
Posted By JeniF
Re: PHP ?queries - How to?

If you are using a database to store the information, create a recordset for your values displayed on your product page.
the example below will take the user to a page called productInfo.php and...
Forum: PHP Sep 27th, 2007
Replies: 12
Views: 1,417
Posted By JeniF
Re: Page numbering for printing out an online manual

for page printing maybe a loop through of the section/contents???
Forum: PHP Sep 27th, 2007
Replies: 12
Views: 1,417
Posted By JeniF
Re: Page numbering for printing out an online manual

Thanks!
No changes thus far..just a quick question...can the text file contain images and html code?
nice job so far though
Forum: PHP Sep 26th, 2007
Replies: 9
Views: 1,501
Posted By JeniF
Solution Re: php header include on html? (picture gallery)

Dave,
Is there some really good reason to have the pages end with a .html? PHP can read a plain old html file without any php coding in it. If you are on a GoDaddy server (which I have a few sites on...
Forum: PHP Sep 26th, 2007
Replies: 12
Views: 1,417
Posted By JeniF
Re: Page numbering for printing out an online manual

The manual is broken down as so:

Table of Contents (no page number for this)

Introduction
Physical Basics
BASIC PRINCIPLES
Balance/Defensive Stance
Pivot
The Front Lift
Forum: PHP Sep 25th, 2007
Replies: 12
Views: 1,417
Posted By JeniF
Solution Re: Page numbering for printing out an online manual

Hey many thanks for the thoughts...
Can you give me a bit more info on how you would process the entire manual from one php page? As in a function of some sort...maybe from the table of contents page...
Forum: PHP Sep 25th, 2007
Replies: 12
Views: 1,417
Posted By JeniF
Re: Page numbering for printing out an online manual

Currently the manual is set up as both separate pages and a "main page" for each section that flows from one sub-section to the next. I used anchors within this page to navigate.
From the Table of...
Forum: PHP Sep 23rd, 2007
Replies: 12
Views: 1,417
Posted By JeniF
Question Page numbering for printing out an online manual

Hello to all!
I have an online manual (developed in php)that my company would like to revise for printing purposes. What I need to do is have this manual setup to include page numbering on the...
Forum: PHP Sep 22nd, 2007
Replies: 3
Views: 541
Posted By JeniF
Solution Re: Database error

UPDATE (http://www.daniweb.com/forums/thread90382.html#) session SET newposts = newposts+1 WHERE NOT ISNULL(newposts);

Try this

UPDATE session SET newposts = newposts+1 WHERE newposts !NULL;
Forum: PHP Sep 15th, 2007
Replies: 1
Views: 922
Posted By JeniF
Re: How to export data from mysql into fields in excell

I have tested you code and found that it works.
the only thing I did different was place this code at the top of the script:

error_reporting(E_ALL ^ E_NOTICE);

once I did that it worked fine. It...
Forum: PHP Sep 13th, 2007
Replies: 6
Views: 1,686
Posted By JeniF
Solution Re: Parse error, unexpected T_STRING, expecting T_CASE

try the case statements like this:

case'1': echo 'File exceeded upload_max_filesize';
break;
case'2': echo 'File exceeded max_filesize';
break;
case'3': echo 'File only partially uploaded';...
Forum: PHP Sep 12th, 2007
Replies: 5
Views: 1,993
Posted By JeniF
Solution Re: PHP Dynamic Form HELP!

Ok a walk through for you:
I created tables based on what your post contained, and inserted some values that I could use to test out the code on. The following are the tables and the "dummy" info;

...
Forum: PHP Sep 9th, 2007
Replies: 3
Views: 1,028
Posted By JeniF
Solution Re: Need help with session in php.....

This can be performed like this:
login.php page

<?php require_once('Connections/phpForum.php'); ?>
<?php
error_reporting(E_ALL ^ E_NOTICE);
// *** Validate request to login to this site.
if...
Showing results 1 to 40 of 52

 
All times are GMT -4. The time now is 6:29 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC