Jump to content
MakeWebGames

jcvenom

Members
  • Posts

    575
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by jcvenom

  1. I agree, but for example the image slider needs js to work the only think i could change would be the navigation and the forms but that would cost the client even more money i just do what im told to do
  2. But shouldn't the client take this into mind before requesting work? Because this is another work i didn't intend to do nor will I do unless requested by the client, personally i agree there's nothing wrong with a UX i would probably use it myself, but in this case I haven't
  3. Bare in mind I have only done what the client requested so its not in my best interests to go that far and create a mobile site. If requested I would take that into into mind and do something about it but in his case it's not my call i'll let the client worry about that :)
  4. I Suppose, But must sites use JS meaning most sites wouldn't work without Js but I guess your way is good the only downgrade for me personally is the fact you must use external pages
  5. Thank you very much the live version with the login will be posted shortly
  6. I do appreciate the fact that yous i giving feedback thank you but as for your response i do get theres other ways/techniques as [MENTION=65530]Coly010[/MENTION] said maybe you could show me an example? And i have individually PM yous the url
  7. I never said it was super you see, you may not understand it's use but its meant to work for the layout i have built and it does so the only thing that's lost at the moment is you :) - - - Updated - - - Thank you [MENTION=65530]Coly010[/MENTION] and thanks for trying to help me yesterday it really got me thinking and i finally fixed it and i'll bare this in mind next time.
  8. I didn't as I stated no external pages are loaded its all in the divs for example <div class="link"><a href="about">About</a></div> <!--Link--> <div class="something" page="about"> </div> <!--All you would need to do is this--> $(document).ready(function(){ $('body').on('click',"*[href]",function(e){ var page = $(this).attr("href"); e.preventDefault(); locatePage(page); }); function locatePage(request){ if(!request) return false; var content = $('.something'), content.find(request).attr("page"); setTimeout(function() { $(".something[page='"+request+"']").fadeIn(200); $(".something[page!='"+request+"']").fadeOut(100); },500); } });
  9. Im sorry guys i didn't realize i sounded cocky, i was just trying to sound smart but it's seems like I gave you guys the wrong impression of me what you read up there isn't how I behave normally I just tried to impress and i'm very bad at and i think i went to overboard and i do apologize sorry if i offended you :)
  10. If he had asked it like that i would've glady explained but the way you have specified isn't how i did mine although it could be a good technique and AJAX isn't used to load a page only jquery, I mean't the forms use AJAX
  11. Could you explain your question clearer? Btw I don't have to share my technique's with you nor do I've to explain in great detail,so don't wish to answer your question
  12. I recently started freelancing 2 weeks ago and I got a request from a client (Login + Register) I added a few bonus features only because It was my first freelance job. I hope you like what I have done and I hope To receive clients from this, I may give show to url to some people only If request. The site login is built with CSS, HTML, PHP, JQUERY,AJAX & JAVASCRIPT, It uses AJAX requests along with Javascript along with a clever technique of mine to load content onto a page without having to create external pages and use the Jquery load function :P.Nothing on this page refreshes, everything is loaded server side (I added this as a bonus for the client :) ). [ATTACH=CONFIG]1777[/ATTACH][ATTACH=CONFIG]1778[/ATTACH][ATTACH=CONFIG]1779[/ATTACH][ATTACH=CONFIG]1780[/ATTACH][ATTACH=CONFIG]1781[/ATTACH] The image slider in the last picture is my custom modification it also changes every 5 secs. Total Cost for client: £70 I would like to get some feedback or negativity thanks (I'm not a web designer btw) :P Jcvenom - - - Updated - - - The design was what the client requested :)
  13. jcvenom

    CSS Error

    I appreciate the help and i've cleared my inbox
  14. jcvenom

    CSS Error

    I've sent you a PM of the url
  15. jcvenom

    CSS Error

    I'm doing work for a client and for some reason my css looks weird. When minimized by pressing CTRL + (-) it decreases in the top left corner of the page, rather than decreasing in the center unfortunately I can't show the code nor the url due to people copying my work, I can only show the url to some people I trust here anyways here's a screenshot of the issue and fix or suggestions would be grateful thanks :) [ATTACH=CONFIG]1771[/ATTACH][ATTACH=CONFIG]1772[/ATTACH]
  16. I don't see the point in owing 4 - 5 games that's five times the work load for a game owner and as for using one paypal account I'm not sure if this is possible or how to do it
  17. Thats okay XD and he gave you a response
  18. I 100% love this guy and respect him. I also agree with his statement why should anyone question the way he does things if its right? Its for his readability, I see nothing wrong with what he has produced in his post.
  19. I know :) Havent coded since
  20. My name is Ebenezer Adeniran(Jcvenom) And im currently looking for clients for jcvenomnetworks.co.uk (80% finished) i've owned a game CCM with my friend Sammie and i've decided to take a break and start freelancing, I'm in need of money and my skill sets are as follows: PHP (Very Good) CSS (Very Good) HTML(Very Good) JS (Im decent at this) JQUERY(Im decent at this) AJAX (Basic Skills mainly with requests) I have worked with a few games, and game engines such as McCodes and the RC Engine, Web game development is my favorite and this is we're my dedication comes into play, I can provide you your dream game today or mod hehe!, I'm very experienced it this category. Another thing, I can build websites etc but note "I AM NOT A WEB DESIGNER" :P if your looking for a web designer PM W3 or zet as far as I know :) That's all you need to know although i'm pretty S*** at intros I do deliver workwise :P   The downfall is ATM i currently haven't any work of mine to show but I do have screenshots of CCM but there not mine to show as some mods on the game we're made by me and Sammie. SO im looking for clients, (I currently have a client, but still looking for more) Email : [email protected] Thanks, Jcvenom
  21. Merry Christmas guys hope you's all have a good one and cheers to an okay year hopefully 2015 will be your year of wonder :P Thanks guys, Jcevnom (JcvenomNetworks.co.uk) ❄
  22. I actually didn't realize it was declared in the style_top, that was simply a mistake
  23. [b]Firstly declare[/b] $playerid;[b] in your styletop or header[/b] $playerid = $_SESSION['playerid']; [b]or if it in a switch function declare the variable[/b] $playerid = $_SESSION['playerid'];[b] outside the function and call it using "global".[/b] $playerid = $_SESSION['playerid']; //Variable assigned to session switch($_GET['whatever']) { case 'index': index(); break; default: index(); break; } function index(){ global $playerid; } [b]And you where missing `wallet`as kyle stated[/b] mysql_query("UPDATE `members` SET `my_points` = '25', `my_dondays` = '8', `wallet` = `wallet` + '50000',`gift` = 1 WHERE `playerid` = {$playerid}"); i_credit($playerid, 79, 3);   - - - Updated - - -   Hope this helps.
×
×
  • Create New...