iGuest
Members-
Content Count
72,093 -
Joined
-
Last visited
-
Days Won
5
Everything posted by iGuest
-
yeah...you will be revealing your ip to the whole world...
-
nukemods is nice....but if youre in singaporedon't try...
-
digital dementia green
-
does this free web site come with a shopping cart
iGuest replied to iGuest's topic in General Discussion
or...you could install phpnuke platinum....built in shopping cart... -
so sorry for your spine....
-
edit the msql dbnuke_authors...
-
phpnuke can be manually modified to you design....
-
glad you did
-
http://www.techgfx.com/ register download phpnuke 7.6 phpnuke platinum 7.6 themes add-ons modules blocks
-
is this web host the only 1 what does php-nuke for free
iGuest replied to iGuest's topic in General Discussion
they are others but they suck.....fnh rules... -
good to see you too....
-
nice joke...but seriously...how
-
wad you mean by hard on resources..btw norton is worse...when i had it so many viruses...
-
You'll find that a lot of OS combine both C/C++ and ASM. Usually ASM is used in places where programmers find bottlenecks in their program, codes that can slow the system down, by using inline Assembly they can efficiently speed up the program. There may or may not be a reason to write a program completely in ASM, as C/C++ compilers do a reasonable job and may provide better methods for the code. I find it's best to incorporate both languages, that way you have the best of both worlds. An OS written in entirely in 32bit assembly language is Menuet OS. I highly recommend it, even if it's just to learn about it. Cheers, MC
-
Just how many "Happy New Year" threads are there?
iGuest replied to iGuest's topic in General Discussion
yeah i agree... -
err...i did
-
heh, it loaded within a second for me. Anywho, I like the layout! It's pre tty clean for having a lotta stuff on it
-
Well, it's late, but I can give you a quick overview of it. As to setting up the database, I haven't gotten acceptance yet, so I couldn't help ya there. I'm assuming you just go in your cpanel->mysql databases-> add database.Now you have a database... you need a table phpMyAdmin can help you there or you could write the code on a php file and execute it online. Once again, I haven't been able to see what the cPanel looks like, but under phpMyAdmin, go under your database and try to add a table. Here, you need to specify how many fields you're going to have.Let's say you have a database of visitor info. You might want to keep track of visitor's name, ip address, how many times they've been to your site. So you'd need 3 fields.Anywho, once you figure out how many files you need, you need to name them and specify their types. You'll most likely be using VARCHAR which is essentially a string. So if you make a field VARCHAR with size 30, it can have a string of 30 characters at max. Others are INT for integers (numbers). So, you just name the fields and specify what types you want them to be.Now your table is setup... It looks like the user will submit a form. So, when you set up the form, you'll set up possible values for form variables. Once the user clicks on something or types in something and finally submits it, then that info will be sent to another page (php or something), then you'll write SQL code in there that takes the form variables and inserts them into the sql database So yeah, in this page of php code, you'll have to write SQL code in it to insert the data in your table you just created I don't remember the code off the top of my head, but there are tons of tutorials. Look up "MySql INSERT." That should help ya.I hope this helps!
-
Admin, you are taking too much time to select an admin. It seems you don't need one right now... Can u pls explain?
-
robots.txt for stopping some spambots (very long post)
iGuest replied to iGuest's topic in General Discussion
Thats the question you sometimes ask yourself, but lets not forget that there are still spiders there do the right thing and reference the robots.txt file, as geancanach points out in his list above. -
Hello, i just now purchased a reseller account, when can i expect it to be ready?Thanx.
-
Firefox sux!support WC3 standard IE!BTW:Did u know that netscape(or Mozilla) started the browser war?They created lot's of rubbish tags like layers so as to gain popularity
-
edit one of the files of PHP-Nuke...Search urself....it's good that u do it urself,so u know wad to do if another problem like this happens.HINT:In order to email,PHP use the mail() function