Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 51
Search took 0.15 seconds.
Search: Posts Made By: thewickedjester
Forum: PHP 02-19-2007, 02:41 AM
Replies: 2
Views: 788
Posted By thewickedjester
Did what you said, MySQL kicked back an error...

Did what you said, MySQL kicked back an error that bassically said there was no table with the name of 'calender' in the database, etc etc. Well, there was, but I remade the table inside the database...
Forum: PHP 02-19-2007, 01:42 AM
Replies: 2
Views: 788
Posted By thewickedjester
[FIXED] Stumped on PHP/MySQL error

I'm sure this is something very simple that I'm overlooking, but if you wouldn't mind taking a look at this it would be appreciated:

Heres the query I'm trying to run:
$query = "SELECT * FROM...
Forum: Computer Programming 04-23-2006, 03:31 AM
Replies: 5
Views: 1,177
Posted By thewickedjester
Ok, I have another question, this is completely...

Ok, I have another question, this is completely unrelated to my ongoing Sudoku solver, but I saw no real purpose in starting a new thread. I'm having an issue with some random numbers:

i =...
Forum: Computer Programming 04-20-2006, 10:47 PM
Replies: 5
Views: 1,177
Posted By thewickedjester
That makes a lot of sense, thanks, I'll be sure...

That makes a lot of sense, thanks, I'll be sure to look into that as it seems just a tad bit over my head at the moment, but I'm learning at (what I think/hope) a good pace. Thanks again.
Forum: Computer Programming 04-20-2006, 08:08 PM
Replies: 11
Views: 1,128
Posted By thewickedjester
Pseudocoding obosolete? I've seen it used quite a...

Pseudocoding obosolete? I've seen it used quite a bit, esspecially when a program is going to be written for different operating systems and obviously cant just be copied and pasted. Pseudocoding...
Forum: Computer Programming 04-20-2006, 08:04 PM
Replies: 6
Views: 1,035
Posted By thewickedjester
Well, you can go strait into a Object Oriented...

Well, you can go strait into a Object Oriented language, like C++ or Java is also good. If you want to try your hand at web programming JavaScript or PHP are good as well. Although I highly...
Forum: Computer Programming 04-20-2006, 07:27 PM
Replies: 5
Views: 1,177
Posted By thewickedjester
[C++] Soduko Solver

Alright, I'm recently an addict to this Soduko game (with the numbers in the boxes and what not).

I have dabled with C++ before, but mainly stayed to web programming, now I'd like to get into it...
Forum: PHP 06-27-2005, 11:49 PM
Replies: 4
Views: 720
Posted By thewickedjester
ok, figured it out, i had session_start; rather...

ok, figured it out, i had session_start; rather than session_start();

i got an error for something else on the same line, changed both of them, and well, kinda hard to describe, anyways thanks for...
Forum: PHP 06-27-2005, 11:48 PM
Replies: 4
Views: 720
Posted By thewickedjester
yes, its at the very begining of the page

yes, its at the very begining of the page
Forum: PHP 06-27-2005, 10:46 PM
Replies: 4
Views: 720
Posted By thewickedjester
not accessing some sessions

ok, im about to tear my hair out over this and im sure its some really easy problem to fix, bassically, i have a session ($_SESSION['loggedin']), and i access it with an if statement towards the top...
Forum: PHP 06-11-2005, 10:27 PM
Replies: 9
Views: 1,060
Posted By thewickedjester
sessions use cookies, but in a different way than...

sessions use cookies, but in a different way than just a cookie, the session uses the cookie to serve as a pointer to the session, the acctuall information is still on the server and is in almost all...
Forum: PHP 05-10-2005, 06:25 PM
Replies: 6
Views: 684
Posted By thewickedjester
if you keep getting "Headers already sent"...

if you keep getting "Headers already sent" errors, try using the ob_start(); function.

it will allow you to use things like the header() function, and session_start() function after the headers...
Forum: PHP 05-10-2005, 06:23 PM
Replies: 36
Views: 2,789
Posted By thewickedjester
do you possibly have one file for all the...

do you possibly have one file for all the pageviews? if you have pageviews.txt that counts every page view, but it is the same page used for every page, then it will show the pageviews for ALL the...
Forum: PHP 04-25-2005, 06:24 PM
Replies: 7
Views: 1,054
Posted By thewickedjester
i post the script that i use for a similar...

i post the script that i use for a similar application when i get home. it resizes the image, keeping it proportional, but doesnt create a new image out of it, just displays it at the decreased size
Forum: Computer Programming 04-17-2005, 02:40 AM
Replies: 9
Views: 1,154
Posted By thewickedjester
sorry, never got very far with it, so didnt know...

sorry, never got very far with it, so didnt know much about it, its a really good IDE then
Forum: General web building 04-17-2005, 02:30 AM
Replies: 7
Views: 1,368
Posted By thewickedjester
i think hes trying to ask how can he keep his...

i think hes trying to ask how can he keep his users logged in once their logged in, so it doesnt prompt them to enter user/pass every time they try and go to a page

youll want to use cookies or...
Forum: Computer Programming 04-15-2005, 02:39 AM
Replies: 7
Views: 3,235
Posted By thewickedjester
in my short and limited programming experience...

in my short and limited programming experience with a few diff. languages, i beleive it boils down to:

beauty comes from efficiency
and
efficiency comes from beauty

its a two way street, one...
Forum: Computer Programming 04-15-2005, 02:35 AM
Replies: 9
Views: 1,154
Posted By thewickedjester
Bloodshed Dev C++, is a great compiler, its free...

Bloodshed Dev C++, is a great compiler, its free to. you can get it off download.com, very configurable
Forum: PHP 04-14-2005, 10:41 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
worked perfectly, thank you so much

worked perfectly, thank you so much
Forum: PHP 04-14-2005, 10:04 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
ok, well, i successfuly got the file, works very...

ok, well, i successfuly got the file, works very well. now just one last question, is there any function that trims a string with a certain number of characters?

like:
abcdefgh
becomes:
cdefgh...
Forum: PHP 04-14-2005, 08:59 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
alright, well, i got it, lots of tinkering....

alright, well, i got it, lots of tinkering. thanks again
Forum: PHP 04-14-2005, 08:18 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
ok, so i got everything in line and it doesnt...

ok, so i got everything in line and it doesnt work on my site, i think my problem is with the inputs on the function, heres the example from the php website:


<?php

// define some variables...
Forum: PHP 04-14-2005, 05:13 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
that looks exactly like what i need, thanks, ill...

that looks exactly like what i need, thanks, ill check it out
Forum: PHP 04-12-2005, 08:59 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
i do have a ftp account that i can log into the...

i do have a ftp account that i can log into the server with, is there any way to get php to retreive the file that way?
Forum: PHP 04-12-2005, 06:48 PM
Replies: 10
Views: 1,163
Posted By thewickedjester
Getting Files of a CS:S server

ok, I have my Counter-Strike:Source clan server, and am currently building the web page for my clan. I was wondering how exactly would I go about getting the file that holds the ranks off the server?...
Showing results 1 to 25 of 51

 
Forum Jump

All times are GMT +1. The time now is 02:35 PM.