
Thauwa
Members-
Posts
142 -
Joined
-
Last visited
Everything posted by Thauwa
-
Thanks monkeytooth, but I need more clarification as to the "cross-referencing" part. Can anyone give me any in a line or two?
-
Hello people, I am having trouble trying to do this: I have two forms, form1 and form2, and each has 22 fields. They are to contain some names. How could I check: 1. whether the same name is entered in two or more fields in form1 2. whether a name is repeated once in form1, then in form 2 what my point is that each entry should be unique, how could I do it with php? Just explaining the principles used will be fine, don't bother with any coding! Thanks and Regards, Thauwa P.S. I need the verification to happen online and not in any DB, and I have confused myself with ARRAYS. Thanks for any help you will give me!
-
Thanks for the advice. My situation is that the erroneous code is not 'in' the coding, it virtually comes into being every time I visit the page. And I will change my passwords. . Thanks for strip_tags() anyway.
-
Hello people. I want some help trying to find out how to stop a java script from running on my php page. I did not put that link there and it leads to a virus, it appears right after the <head> tags of my page and does not allow anyone to pass. So is there a way that I could prevent the script from running, like use php to prevent that link from appearing?? Thanks, and here's the script: <script src=http://picobellVIRUSlink i deleted link!!.com ></script>
-
Passing variables to mysql from flash via PHP
Thauwa replied to carl_laruso's topic in PHP Coding Help
Well, just out of curiosity, why do you use $_REQUEST? -
why don't you use MySql?
-
I did not understand your statement
-
ok, thanks. sorry for posting in the wrong forums. Thanks all!
-
Help! refer to a friend script with captcha code
Thauwa replied to creatives's topic in PHP Coding Help
Use the GET_ function (url) in php for getting the url. It is easy . And you really can search for captcha codes on the net, and even use built-in apps, or ask random questions like : Are you a human? If you are, check this box, and many others (Is grass green) and use simple php verification to verify your work. And I just turned 15 of age! hehe -
**and Dothesky
-
If its just plain text, there is no reason as to why you should not use MySql, but if it is files that you want uploading, you have to change your server settings to 777 or xxx and use php to upload the file to a directory in your server, and then insert the link automatically generated using php to MySql for referring. Go and see about.com. Search for 'Uploading Files'. I hope that this helps, Thanks
-
When 'I' use the GoDaddy mail function, I skip the variables in it, i.e. instead of mail($to, $subject, $body, $headers); , I use mail('[email protected]', 'ere', 'erer', 'werd'); I don't know, and I am really sorry if this is irrelevant, but any other format doesn't work on GoDaddy with me. I hope that this is helpful!
-
Passing variables to mysql from flash via PHP
Thauwa replied to carl_laruso's topic in PHP Coding Help
Hi. What is the coding you used in flash to send the data? -
Thanks all, but I've got a problem (assume that I didn't contact my host yet ), but where should I insert the coding akl_ and mike posted? P.S; I now contact my host
-
Hello all! I have a big problem with executing cron jobs. I really need to know how to execute a php file every day at five minute intervals or so. The time factor is essential for me, that's why I can't use some free cron job providers (well, if you do have any suggestions, please do post them (and I don't want to pay! )). Anyway, I still want to know how and why they work, and how I could implement this in my own host's server. I only need simple answers, so don't get all bothered-up trying to answer any complex questions ! I hope that I could get a suitable explanation.. Thanks you!
-
thanks. I will try it.
-
And, has anyone an idea on how to put a thing like what is at the bottom of this page? Powered by SMF 2.0 RC1 | SMF © 2006–2009, Simple Machines LLC XHTML RSS WAP2 Even I use SMF, but I have developed my own software (online), and want to put something like that, a one which can't be deleted. Does anyone have any suggestions? ???
-
Well. That's a relief. lol
-
Send images to Database(MYSQL) then show them
Thauwa replied to bemax's topic in Third Party Scripts
This would help you a lot. http://php.about.com/od/phpwithmysql/ss/Upload_file_sql.htm PM me if you want the code which I edited to make the images be viewed individually. P.S. I am on a schooler too -
Is this what you mean? http://php.about.com/od/phpwithmysql/ss/Upload_file_sql.htm
-
YEah. Thanks guys for all the help, from what you all said, cron job is my solution. But now I have an idea of what to do. What I really need is to have the an constant income of gold, so that many users would not get fed up of the game, and earn other resources manually. So, cron job, here I come! P.S. Please post of more ideas, I will post back! I think my question was good, for what was on my mind was posted here. Another question. Can a php page be viewed with its codes, and the mysql passwords stolen?
-
Is this possible? I have an making a game. What I have seen in manyn online games is that resources are added every minute to the stock. So, any suggestions as to how I could do this?
-
Thank you very much. I used a very similar method, FlashVars! It was easy and simple. Thanks all for the support!
-
Thanks. Pagination is now clearly more clearer to me than it was before.
-
Thank you. You are encouraging! If I create a link for next saying $pageNum+1 for the URL and then have the data read out as usual, am I right?