Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 12 of 12
Search took 0.08 seconds.
Search: Posts Made By: Nikolis
Forum: PHP 12-08-2005, 10:21 PM
Replies: 9
Views: 932
Posted By Nikolis
Yeah, FORM; should be changed to EOF; therefore...

Yeah, FORM; should be changed to EOF; therefore closing the echo statement correctly.
Forum: PHP 11-20-2005, 11:21 PM
Replies: 1
Views: 579
Posted By Nikolis
Create Images With PHP

Hey, this isn't a dire thing I need answered immediately or anything of the sort, rather I am curious how to generate image with PHP. The whole process, everything about it. I looked at some of the...
Forum: HTML & CSS 11-16-2005, 07:59 PM
Replies: 13
Views: 757
Posted By Nikolis
Was the problem both in IE and FF? If it was just...

Was the problem both in IE and FF? If it was just in FF, then I believe I know the problem...
img {
vertical-align:bottom;
}
That works for me when the there seems to be a noticable gap under...
Forum: PHP 11-16-2005, 12:49 PM
Replies: 2
Views: 622
Posted By Nikolis
You could easily update the row in the database...

You could easily update the row in the database with their previously stored data.

$query = mysql_query("UPDATE table SET field = '$form_field', field2 = '$form_field2'");

if(!$query) {
...
Forum: Post a PHP snippet 11-15-2005, 10:12 PM
Replies: 25
Views: 148,500
Posted By Nikolis
Thanks man. I didn't want to spend the time...

Thanks man. I didn't want to spend the time writing and thinking about doing this. Helped alot with this little snippet ^^ Thanks again :)
Forum: Post a PHP snippet 11-15-2005, 10:04 PM
Replies: 19
Views: 5,693
Posted By Nikolis
This is the expression I use to check against...

This is the expression I use to check against email address submissions......
Forum: PHP 11-15-2005, 09:54 PM
Replies: 4
Views: 641
Posted By Nikolis
//number of times to do whatever $num = 10; ...

//number of times to do whatever
$num = 10;

for($i=0;$i<$num;$i++) {
//whatever you wish to do $num amount of times...
print("Line $i");
}
That's a simple for loop to do whatever $num...
Forum: HTML & CSS 11-15-2005, 08:25 PM
Replies: 7
Views: 838
Posted By Nikolis
a { font-size:1.0em; color:#000; ...

a {
font-size:1.0em;
color:#000;
padding:1px 1px 3px 1px;
}

Black = #000 = #000000

I would suggest using the hexidecimal values rather than naming the colors, that way it is sure to be...
Forum: PHP 11-15-2005, 08:11 PM
Replies: 3
Views: 643
Posted By Nikolis
When I view the gallery, the thumbnails all...

When I view the gallery, the thumbnails all appear to be the same size to me. They are each 160x120 pixels. So, I am not sure where the problem is, maybe I am not looking in the right place.

Wait,...
Forum: PHP 11-15-2005, 07:59 PM
Replies: 26
Views: 1,380
Posted By Nikolis
You want to record the form information into a...

You want to record the form information into a database as well? That should be easy enough...
$query = mysql_query("INSERT INTO table (field, field2, field3) VALUES ('$form_info', '$form_info2',...
Forum: PHP 11-15-2005, 04:08 PM
Replies: 7
Views: 945
Posted By Nikolis
As I am not much experienced with Sessions, I...

As I am not much experienced with Sessions, I can't very well help you. But, is this effecting the output of the image, or anything else for that matter? It seems as though the session is being...
Forum: PHP 11-15-2005, 04:02 PM
Replies: 26
Views: 1,380
Posted By Nikolis
Not sure if I am going the right way with this,...

Not sure if I am going the right way with this, but I believe this should fix it o.0


//The HTML for the select drop down form field...
<select name="status">
<option>Choose One...</option>...
Showing results 1 to 12 of 12

 
Forum Jump

All times are GMT +1. The time now is 03:26 PM.