Forum: HTML and CSS Feb 4th, 2009 |
| Replies: 1 Views: 768 Hi There, I have a page containing the following code
<frameset rows="75,*">
<frame src="menu.php" scrolling="no" marginwidth="0" marginheight="0" />
<frame src="home.php" id="main" />
... |
Forum: PHP Jan 29th, 2009 |
| Replies: 4 Views: 1,007 Not a problem, I caught your gist...
Thanks again. |
Forum: PHP Jan 29th, 2009 |
| Replies: 4 Views: 1,007 |
Forum: PHP Jan 29th, 2009 |
| Replies: 4 Views: 1,007 Hi There folks.
I was thinking of trying to make a php function in my sites configuration file so that I could keep all mysql database info in one central file.
I should mention that this is... |
Forum: PHP Dec 20th, 2008 |
| Replies: 1 Views: 701 in your example, You have already converted your date to a timestamp and have the event length in seconds, so just add the seconds to the timestamp. Here, Try This...
$timestamp =... |
Forum: PHP Dec 19th, 2008 |
| Replies: 4 Views: 1,517 I guess that gives me the idea anyway. I already have the tables similar to what you specified, but I even have grandparent category id stored as well. Thanks for the help. |
Forum: PHP Dec 18th, 2008 |
| Replies: 4 Views: 1,517 This isn't exactly what I was looking for. I should have been more specific.
Table1 holds information such as item information and a category id number.
Table2 holds the category name and a parent... |
Forum: PHP Dec 17th, 2008 |
| Replies: 4 Views: 1,517 hey folks, I have a question. I have several mysql tables and I'd like to fetch data from a few of them to create a <select> <option> list. How could this be done. I can get the info from one table,... |
Forum: PHP Dec 8th, 2008 |
| Replies: 6 Views: 779 Maybe try this... Its What I've used.
$num = mysql_num_rows($result);
it might help. |
Forum: PHP Dec 8th, 2008 |
| Replies: 2 Views: 1,185 Hey, thanks. This was the firsdt time I tried to use the preg_match function. I was trying something new but had to learn a little more. Thanks for the help. |
Forum: PHP Dec 7th, 2008 |
| Replies: 2 Views: 1,185 Hi all. I am having a little trouble trying to get a small script to work. What I am trying to do is create a page to use with DADA mail mailing list software.
I would like this page to search... |
Forum: PHP Dec 4th, 2008 |
| Replies: 8 Views: 562 Try This...
<?
$server = ""; // Your MySQL Host - might be local host
$dbusername = ""; // Your Database User Name
$dbpassword = ""; // Your Database PassWord
$db_name = ""; // Your Database... |
Forum: PHP Dec 3rd, 2008 |
| Replies: 8 Views: 562 I don't know why I didn't catch that. I usually use something similar to the following.
$qProfile = "SELECT * FROM signers WHERE recordNum='".$id."' ";
$rsProfile = mysql_query($qProfile);... |
Forum: PHP Dec 3rd, 2008 |
| Replies: 8 Views: 562 I think it would work to use something like this...
$qProfile = "SELECT * FROM signers WHERE recordNum='".$id."' ";
Hope This Helps. |
Forum: PHP Nov 30th, 2008 |
| Replies: 1 Views: 405 Hello There, I had found this script of the web, though I don't remember where now, anyway here's what I use.
<?
define('SERVER', 'localhost'); //Your server host
define('USRNAME', 'root'); ... |
Forum: PHP Nov 28th, 2008 |
| Replies: 3 Views: 494 What type of reflink are you meaning? I guess I don't quite understand what you mean.
Do you wan't a link like this:
http://YourDomain.com/?ref=yourusername
if so you could simply add the... |
Forum: PHP Nov 25th, 2008 |
| Replies: 2 Views: 471 There is a tutorial that I would recommend. It can be found at
http://www.jdtmmsm.com/tutorials/basicAuthentication.php
Hoe This Helps |
Forum: PHP Nov 25th, 2008 |
| Replies: 5 Views: 728 If I may offer my suggestion. I think there may be a better way to go about the DB selection. If you create a column in your DB titled `ID`. I think this would be better than just reading a line... |
Forum: PHP Nov 24th, 2008 |
| Replies: 1 Views: 331 There are a lot of ways that you could do this. One way would be to use sessions to store some info.
You can use a form like this one...
<form id="theme" action="" method="post">
<p>
<select... |
Forum: PHP Nov 24th, 2008 |
| Replies: 6 Views: 491 I Think this code is missing some brackets {}.
Try This
if ($info!="rwxrwxrwx"){
return false;
}else{
return true;
}//verify_folder_permissions
function clean_folder($folder,$total){ |
Forum: PHP Nov 24th, 2008 |
| Replies: 2 Views: 291 A script that I found to get me started with my sites can be found at http://www.jdtmmsm.com/tutorials/basicAuthentication.php
I did do several changes to my sites to make them a little more... |
Forum: PHP Nov 24th, 2008 |
| Replies: 2 Views: 339 If I may offer a suggestion. I use a email script on my site that I would highly recommend. It is capable of a wide range of functions.
You can find it at... |
Forum: PHP Nov 22nd, 2008 |
| Replies: 2 Views: 1,512 Thanks for the info. This is what I was looking for. With some modification of my scrpt I think I can get it to work. Thanks alot. |
Forum: PHP Nov 22nd, 2008 |
| Replies: 2 Views: 1,512 Hi Folks
I am trying to make a php form processing script. The form would have a large text area in it where the visitors could type a few paragraphs of text. I want this script to break the text... |
Forum: PHP Sep 2nd, 2008 |
| Replies: 2 Views: 803 Hi, Sorry I didn't post back earlier. I finaly figured out how to do what I wanted. Thanks. |
Forum: PHP Aug 29th, 2008 |
| Replies: 2 Views: 803 Hi, I was wondering, if it is possoble (or how to) include a php file with a get form value passed.
For Example: states.php?state=NY.
This file would be incuded into another php file so that it... |
Forum: PHP Aug 13th, 2008 |
| Replies: 17 Views: 1,194 Hi again. I just found where they were coming from. you had typed <\tr> when it should have been </tr>. Once I changed that it made everything show, if I dare say, perfectly. By the way I knew the... |
Forum: PHP Aug 13th, 2008 |
| Replies: 17 Views: 1,194 Ok, First off the table looks better, but for some reason I'm getting < r> tags at the end of each row. These are place before the table. I don't understand where they are coming from.
The
... |
Forum: PHP Aug 13th, 2008 |
| Replies: 4 Views: 434 I don't know if this will help, but I noticed that your include may not be correct.
Try this <?php include("./renders/gallery.php"); ?>
or
<?php include("gallery.php"); ?>
I think you include... |
Forum: PHP Aug 13th, 2008 |
| Replies: 17 Views: 1,194 Hi, yours seems to be really close except:
There is a bunch of < r> before the table (I can't find where they are coming from),
I also would like to insert into a cell if the sql row is... |
Forum: PHP Aug 12th, 2008 |
| Replies: 17 Views: 1,194 The names and offices show up properly, but none of the contact info shows up, wether logged in or not. I would assume that the sql query's are working fine, just the if logged in and if officer... |
Forum: PHP Aug 12th, 2008 |
| Replies: 17 Views: 1,194 This is still a no go. also if you look at
$zip = (isset($row['zip']) ? $row['zip'] : " ");
They are not mis matched.
Oh well, I'll keep fooling with it until I get it figured out. |
Forum: PHP Aug 12th, 2008 |
| Replies: 17 Views: 1,194 I wasn't sure how to get it to sort my my ordered list. I want the results sorted by office list. How could this be done with two seperate sql queries. NOTE: not all offices from one query are in a... |
Forum: PHP Aug 8th, 2008 |
| Replies: 17 Views: 1,194 I would prefer not to change the sql query. This would create a plroblem in the list and also would make it difficult to do the logged in view. I'm not sure why the if() statements aren't working. I... |
Forum: PHP Aug 7th, 2008 |
| Replies: 17 Views: 1,194 This would work ok, but I forgot to mention that I still want to show everyone's name. I only want to show the contact info for the president, VP, and Secretary. Only the name and 'office' would be... |
Forum: PHP Aug 7th, 2008 |
| Replies: 17 Views: 1,194 HI All, I've been trying to make a membership management type script. This script would have a database with the members contact info and which office they hold, if any. The problem I am having is I... |
Forum: MySQL Aug 6th, 2008 |
| Replies: 2 Views: 975 Hey, Thanks. That work perfectly. I knew I had seen it done before, but couldn't remember where or how. Thanks Again. |
Forum: MySQL Aug 5th, 2008 |
| Replies: 2 Views: 975 Hi all, I want to sort some sql results by a certain list. I don't want it sorted alphabetically or anything. I want to specify a certain list. eg "order by `office` = 'president', 'vise President',... |
Forum: JavaScript / DHTML / AJAX Aug 2nd, 2008 |
| Replies: 6 Views: 2,102 ok guys, I think I have solved the problem. It was a simply a mis-reference. The script called on the town ID where I accidently renamed that to Town. I don't know if you guys understand what I was... |
Forum: JavaScript / DHTML / AJAX Jul 31st, 2008 |
| Replies: 6 Views: 2,102 Does anyone have any suggestions on how to get this to work. I would appreciate the help. I, myself, am stumped. |