No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
26 Posted Topics
Hi I am currently developing a mobile / tablet application and i've run into a stump. I have a webview that loads a form from a website that i have no control over, this website utilises the django platform. So the situation is this: The form on the foreign website … | |
Re: [CODE]#container { background: url(images/header.png); //replace this [COLOR="Red"]background:#000000 url("images/header.png");[/COLOR] //with this repeat:no-repeat; padding: 0 0 31px 0; } [/CODE] | |
Re: if that paragraph is not inside the #footer then where is the declaration in your css for just a <p> tag to be black? [CODE] #footer p { margin: 0px; text-align: center; [COLOR="Red"]color: #38831E;[/COLOR] // change to black [COLOR="green"]color: #000000;[/COLOR] }[/CODE] Otherwise just p { margin: 0px; text-align: center; [COLOR="green"]color: … | |
Re: personally i think you should be focusing more on mobile browsers (iphones, blackberry, android), fair enough the browse on a pc and mac are still the major player, The world is shifting, and fast, things like the galaxy and ipad, make sure your email displays correctly in different resolutions as … | |
Hey Peeps! Im not too familiar with jQuery, Ive been wanting to make a tooltip for a "search result grid", each trigger should have a unique comment in the tooltip. so say for instance i have a php call like so: [CODE] <?php $query = mysql_query("SELECT * FROM `Cars` ORDER … | |
Re: if you have about $25 a month, then i recommend joining [url]www.lynda.com[/url] They have good video tutorials ranging from basics to advanced. | |
Re: hi lps im assuming you have atleast the basics of some sort of programming language, PHP is a big start as most of the open source cms systems are written in PHP, also any cms`s you download, whether it is wordpress or joomla, will have a link for "documents" which … | |
Re: Please post the code for the iframe here if it is still not working | |
Hey Peeps! been doing a bit of jquery latley and decided to implement some into my live site, now i know this is probably the most basic thing that i am missing, but i need some sort of stop() in my code, thing is, im not too sure where to … | |
HI Everyone, Having a bit of trouble with some array`s... here is the situation: I need to get the contents of 1 array and compare them to another array and if numbers from the 2nd array are in the first array, i want to unset it from the 2nd array. … | |
Re: check that the spelling in your query is right for rows, columns and tables. eg. is yout table called product or product[B]s[/B]? | |
Re: why not just include_once() ? or am i missing the big picture? | |
Re: Sounds like you are looking for a cms system, there are loads of them that are free out there, but in the end, sometimes its best to make your own. [URL="http://www.scriptol.com/cms/list.php"]here[/URL] is a list of some open source cms systems | |
Hi Everyone, Just a basic Conn function i would like to share with the community. Any constructive criticism and tweaks are very welcome, im trying to optimize my entire code library, starting with the basics. [CODE]<?php funtion dbconn(){ $db = "database_name" //<-- name of database being connected to $server = … ![]() | |
Hello Fellow Webberz. I am from a php,html,css,jquery blah blah background but have always had a fascination for the .net languages. Finally my time to join the C# environment has come, due to some financial success i can now afford to study :). I would greatly appreciate it if anybody … | |
Hey, I was wondering if anybody out there is using Aptana Studio 3, For the last 3 months i have changed from dreamweaver to aptana and have had no regrets. I found that dreamweaver has alot of blah blah on their interface... What are your thoughts? and any other great … | |
Re: inline styles is never a good idea, it should all be controlled through a style sheet. but if you were to do an inline style, try this: [CODE]<TD[COLOR="Green"] valign="top"[/COLOR] ><IMG title="" border="0" alt="" src="img01.jpg" width="150" height="90"></TD> [/CODE] | |
Hey Guys... Brain is kind of dead on a late thursday afternoon in Cape Town, Can anybody please assist... what i am trying to do is: 1) in a table i have a column that is an array, its all in plain text 2) i have a table that has … ![]() | |
Re: [URL="http://www.w3schools.com/php/"]do the php tutorial for basics[/URL] | |
Re: Hey! here is a great example of some questions. [URL="http://www.techinterviews.com/php-interview-questions-part-1"]http://www.techinterviews.com/php-interview-questions-part-1[/URL] | |
Re: hey, probably not the best thing to do, but in 2009 i needed to display figures of what people have achieved in my business, i had a mySQL DB that had all their figures in, i did a quick php call to retrieve the figures, then set my img tag … | |
Re: give the labels id`s so in css:: [CODE] #tag1 { some css here; } #tag2 { some more css here; } [/CODE] then on your form you can say [CODE]<label for="message2" id="[COLOR="Red"]tag1[/COLOR]">Testing2</label>[/CODE] | |
Re: 1. For you, what is the best and most effective Internet Browser to use? A:: [COLOR="Green"]Chrome/Firefox[/COLOR] 2. For you, what is the best and most effective Search Engine to use? A: [COLOR="green"]Google[/COLOR] 3. What software system you usually used to generate a website? (Example(s): PHP and Cold Fusion) A: [COLOR="green"]PHP, … | |
Re: Hey there! on line 100: [CODE]<td width="13%" style="font:Verdana, Geneva, sans-serif; font-size: 10px;" class="K2"><strong>'.$user'</strong></td>[/CODE] you forgot to put a full stop at the end of the variable. [CODE]<td width="13%" style="font:Verdana, Geneva, sans-serif; font-size: 10px;" class="K2"><strong>'[COLOR="Red"].$user.[/COLOR]'</strong></td> [/CODE] | |
Re: Hey, assuming your id field is a.increment - [CODE] $sql = "INSERT INTO `users` (`username`, `password`, `email`, `date`) VALUES ('$usernamenew', '$passwordnew', '$email', '$date')"; [/CODE] | |
[CODE]<?php function graphImage($numachieved, $weektarg) { //working out how many days are in the month $day = (date('t')/4.33333); //week1 $day1 = $day; //week2 $day2 = ($day*2); //week3 $day3 = ($day*3); //week4 $day4 = ($day*4); //tagert for the week $perWeek = $numachived; //height of graph $numtarg = ($weektarg*1); $numtarg2 = ($weektarg*2); $numtarg3 … |
The End.