S.Cosmin Posted December 9, 2010 Posted December 9, 2010 Hi, is that a problem if a change the name for example crminal.php to robbery.php ? something breaks? :?: Quote
Dayo Posted December 9, 2010 Posted December 9, 2010 any existing html lionks would be broken ... what i would do is keep criminal but add something like this into it <?php header("Location:".str_replace("criminal.php", "robbery.php", $_SERVER['REQUESR_URI']); ?> please note this is untested Quote
S.Cosmin Posted December 9, 2010 Author Posted December 9, 2010 any existing html lionks would be broken ... what i would do is keep criminal but add something like this into it <?php header("Location:".str_replace("criminal.php", "robbery.php", $_SERVER['REQUESR_URI']); ?> please note this is untested And Dayo, where i place that? Quote
Danny696 Posted December 9, 2010 Posted December 9, 2010 Lolwut dayo oO <?php header("Location: robbery.php"); ?> make that criminal.php, (after making he file robbery.php with the old criminal.php code) should work fine then :) Quote
Dayo Posted December 9, 2010 Posted December 9, 2010 what if you had a link criminal.php?docrime=1&useitm=3 (granted its not default mccodes but you get what i mean) so it would change criminal.php?docrime=1&useitm=3 to robbery.php?docrime=1&useitm=3 Quote
Spudinski Posted December 10, 2010 Posted December 10, 2010 Well, I really don't know what you want to do but the "margin" style property might be of use to you. Quote
S.Cosmin Posted December 10, 2010 Author Posted December 10, 2010 i want to move 10px that table to left...and i cant find it in css... Quote
Spudinski Posted December 10, 2010 Posted December 10, 2010 Well, sometimes stylesheets can become messy but here's a tip: You may define more than one style reference to an HTML element. So insert a space, and then insert the name of your definition. eg: <object style="one two"> Quote
S.Cosmin Posted December 10, 2010 Author Posted December 10, 2010 Has anyoane ideea whou to make a top? Quote
Curt Posted December 10, 2010 Posted December 10, 2010 Hmm about moving the table to the left.... Im not very skilled in CSS( I am learning though) but could you not simply put margin-left: 10px; into the table style ?.. find out your table style name and simply search for it in your css file...a lot quicker than looking through the entire file.. sorry if it dont work...lol also you should make your questions a bit more clear if you would like help.. Has anyoane ideea whou to make a top? I have no idea what you mean but I am guessing you are talking about the header ?... Quote
S.Cosmin Posted December 10, 2010 Author Posted December 10, 2010 Ok, first problem with the table has works, thanks. Now, i want to make a top like this Quote
S.Cosmin Posted December 11, 2010 Author Posted December 11, 2010 Whou is better to make my game, with IE or Firefox? Cuz now i make with Firefox but in IE seen like shit... Quote
Spudinski Posted December 11, 2010 Posted December 11, 2010 I'd say Opera or Chrome in my opinion. But ideally you should test the displays out in all modern browsers; IE, Ff, Opera and Chrome are the solid ones to test for. Quote
S.Cosmin Posted December 11, 2010 Author Posted December 11, 2010 In IE is not good, but i work in firefox and i heart when is good in firefox is goot in chrome, opera, etc right? Quote
S.Cosmin Posted December 12, 2010 Author Posted December 12, 2010 Where can I change what gives you to beginning the game: money, braves...etc Quote
Dominion Posted December 12, 2010 Posted December 12, 2010 staff panel I just change the query in register.php to add more money to start with did not know it was in the staff panel... Quote
Danny696 Posted December 12, 2010 Posted December 12, 2010 I though they ment something else for some reason :/ Quote
S.Cosmin Posted January 28, 2011 Author Posted January 28, 2011 Hy guys, I have another question, ist my script m ore secured if i lock some files with base64 ? Quote
Spudinski Posted January 30, 2011 Posted January 30, 2011 @bladewolf2010: I'd think Firefox is a rock(useless, pointles) and Opera a Ferrari(Fast, reliable, the original). Chrome would be a Space Shuttle(fast as hell). And rockmelt, well I'd say a stick. @S.Cosmin: base64 is an encoding so it can be decoded by anyone. Using an encryption might be better. Quote
a_bertrand Posted January 30, 2011 Posted January 30, 2011 Not really as if you encrypt you must provide as well the code to decrypt otherwise it would not run... So the only pseudo solutions are code obfuscation (which makes the code nearly unreadable) or tools like http://www.zend.com/en/products/guard/ Yet those are useful only if you plan to distribute your code and do not want that others modify / check how you did it. It is by no way more secure in term of web exploits. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.