Forum: HTML and CSS Jun 30th, 2008 |
| Replies: 10 Views: 3,570 Just my own little note in my defense.
My joke was not about IE in general as it runs pretty much as well as the other bowsers as far as CSS. However the Javascript and CSS support in IE7 is... |
Forum: HTML and CSS Jun 28th, 2008 |
| Replies: 10 Views: 3,570 <img style="border: 0px;" src="url" />
use the style ability within most tags and use the CSS call to get rid of borders. if it still isn't working... .delete IE download firefox and try again on... |
Forum: PHP Jun 27th, 2008 |
| Replies: 2 Views: 480 Once again PHP.net has the answer.
I believe you were wanting to return all the files within a directory, as the person above me stated this was not very easy to understand what you were wanting... |
Forum: PHP Jun 27th, 2008 |
| Replies: 14 Views: 1,888 Another option is to just get the information either the substr version from SQL ore the full length. and simply use the wordwrap function built into php that will break only at a space.
... |
Forum: HTML and CSS Jun 25th, 2008 |
| Replies: 2 Views: 2,146 There are four different CSS delcarations.
which of the four do I put it in? |
Forum: HTML and CSS Jun 24th, 2008 |
| Replies: 2 Views: 2,146 textarea { overflow: auto; }
input { overflow: auto; }
.background { background-attachment: fixed; background-repeat: no-repeat; background-position: center; z-index: 0; top: 0px; left: 0px;... |
Forum: PHP Oct 23rd, 2007 |
| Replies: 2 Views: 2,987 It may be that the long string is disabled. I remember that certain array's like that started getting phased out in 4.0.
Please refer to the following page for more information to get the... |
Forum: PHP Jun 6th, 2007 |
| Replies: 8 Views: 1,402 Good suggestions. Now for another.
If you can't learn programming from a book. Most colleges offer courses for the web that will teach some if not all of the following to a basic degree.
PHP,... |
Forum: PHP Jun 6th, 2007 |
| Replies: 8 Views: 1,402 try even reading a little bit. Larry Ullman has a good beginnign book for both PHP and Mysql.
"PHP and MySQL for dynamic Web Pages."
It assumes you know html but that you've nevver... |
Forum: PHP Jun 6th, 2007 |
| Replies: 3 Views: 65,545 you can make carriage returns work. HOWEVER you have to use I beileve is the pre tag. And that is kinda of messy at times. You're better off using a br tag.
just keeping options open. |
Forum: PHP Jun 6th, 2007 |
| Replies: 29 Views: 84,729 check your query. If you get the not supplied valid arguement, 99.9% of the time. the problem is in your query. Echo out your query and check it to make sure that is working properly. This can be... |
Forum: PHP Feb 7th, 2007 |
| Replies: 1 Views: 3,368 I have a fully written forum and I would like to add some code to identify all the active users that are logged on. Their names are stored in session variables.
I would like to retrieve and... |
Forum: PHP Feb 7th, 2007 |
| Replies: 7 Views: 6,450 That is both correct and incorrect. The second page will NOT identify the session when it opens. However a session will NOT end until you tell it to end or it times out. Even if it is stored in a... |
Forum: PHP Oct 19th, 2006 |
| Replies: 2 Views: 2,059 Just another note. If that doesn't help and it doesn't seem to be that way with you. The FIRST thing that should always be looked at with that particular error, is the QUERY that you are trying to... |
Forum: PHP Oct 19th, 2006 |
| Replies: 22 Views: 7,244 One thing you might try is to store you're query in a variable before putting it into the mysql_query() function.
$query = "DELETE FROM employees WHERE recordid='$recordid'";
$results =... |
Forum: PHP Apr 17th, 2006 |
| Replies: 3 Views: 1,121 The skript is taking too much space or the files are taking too much space. If its the files, there may be a method to install a script for compression, but that is your only hope. If you are... |
Forum: PHP Apr 17th, 2006 |
| Replies: 7 Views: 9,300 Use an if statement that wont succeed after the reload. Alot of my code uses redirects with that but they all go to the same page. I just use a variable set that helps stop it from getting to the... |
Forum: PHP Apr 17th, 2006 |
| Replies: 2 Views: 2,762 Try putting a semi-colon after the query. If that doesn't work. take the semicolon out of the quotes of the query, its not needed in this. THe semi-colon is used in SQL to denote the end of the... |
Forum: PHP Apr 16th, 2006 |
| Replies: 7 Views: 1,795 I'm using Firefox. So that could be the reason. I don't usually use Stylization because it is browser specific. The Title of the book is.
PHP and MYSQL for Dynamic web Sites by Larry Ullman.
... |
Forum: PHP Apr 15th, 2006 |
| Replies: 7 Views: 1,795 You are very welcome, I am currently writing the code by hand for a forum so I've come to find alot of strange errors. Its nice to see that I was able to help someone. As with most geeks, I have... |
Forum: PHP Apr 15th, 2006 |
| Replies: 19 Views: 73,862 I store things in it using full text
I store it using a variable like so
$value = '<b><center><fontcolor= "blue">This is the formated text</b></center></font>';
$query = "instert into table... |
Forum: PHP Apr 15th, 2006 |
| Replies: 19 Views: 73,862 I will agree that it is rare that you would want to do that outside of a data hosting site like that. Otherwise you can just store the url and output it however you want by calling it with php and... |
Forum: PHP Apr 15th, 2006 |
| Replies: 1 Views: 955 can you post the section of code where it finds out if you're logged in or not and does what its supposed to do with it. If I can look at the code I might be able to find the error causing it. If I... |
Forum: PHP Apr 14th, 2006 |
| Replies: 7 Views: 1,528 Well the server owners are ALLOWED legally to edit your code. Check your code it is probably slightly different. I saw a few things that needed to be changed so I'm assuming they went in and fixed... |
Forum: PHP Apr 14th, 2006 |
| Replies: 7 Views: 1,795 if all you're doing is retrieving the data you don't need the UPDATE command at all. Just the select query. You can also save some trouble by writting the select query to return only the Username... |
Forum: PHP Apr 14th, 2006 |
| Replies: 1 Views: 2,471 I did a little digging and I haven't tested it so don't blame me if it doesn't work... I'm not an expert on Javascript...
make a function that sets a variable equal to document
document being... |
Forum: PHP Apr 14th, 2006 |
| Replies: 7 Views: 1,795 $sql_check = mysql_query("UPDATE members WHERE password='$password' AND
email_address='$email_address'");
Where is your comand to update. You have the update command but not SET command to tell... |
Forum: PHP Apr 14th, 2006 |
| Replies: 3 Views: 1,300 First. You open a ( and close with a Curly bracket }
Also are those the ONLY TWO colomns in the table. It defaults to the order in which they are listed as the order they show up in the table.
... |
Forum: PHP Apr 13th, 2006 |
| Replies: 3 Views: 1,300 Look at the spot where you are declaring the value of $eaddress
you have written $POST
it needs to be $_POST
keep in mind while debugging the line number is usually close depending on the... |
Forum: PHP Apr 13th, 2006 |
| Replies: 14 Views: 8,886 My suggestion is to hit the bookstore and look up Larry Ullman. His book on PHP and MySQL is an amazing book to teach you the language. It is very quick with the SQL teachings. So reading it... |
Forum: PHP Mar 30th, 2006 |
| Replies: 1 Views: 4,214 Try this code
//note echo is the same thing as print... its preference on that.
echo ' Name: <a href = "URL">'. $name .' '. $fname. '</a>';
Also note that a single quote will never interfere... |