Search Results

Showing results 1 to 31 of 31
Search took 0.01 seconds.
Search: Posts Made By: DGStudios
Forum: HTML and CSS Jun 30th, 2008
Replies: 10
Views: 3,570
Posted By DGStudios
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
Posted By DGStudios
<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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
$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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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
Posted By DGStudios
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...
Showing results 1 to 31 of 31

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC