-
Posts
575 -
Joined
-
Last visited
-
Days Won
4
Content Type
Profiles
Forums
Events
Everything posted by jcvenom
-
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.
-
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); } });
-
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 :)
-
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 :)
-
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]
-
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
-
Thats okay XD and he gave you a response
-
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.
-
I know :) Havent coded since
-
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
-
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) ❄
-
I actually didn't realize it was declared in the style_top, that was simply a mistake
-
[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.