Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
82% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
4
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #1K
~15.9K People Reached
Favorite Tags

65 Posted Topics

Member Avatar for samsons17
Member Avatar for codewall
Member Avatar for pritaeas
0
184
Member Avatar for agr8lemon

you can set the departA and departB to unique or you can add additional condition in your program if you use this sql, check each entry before they inserted into database. SNIP

Member Avatar for adam_k
0
1K
Member Avatar for dottomm

maybe this help [url]http://codewall.blogspot.com/2010/12/import-csv-file-in-mysql-using.html[/url]

Member Avatar for sakarora
0
2K
Member Avatar for johnniegee

Maybe this help and give you some information, how to create bar graph using Google visualization: [url]http://codewall.blogspot.com/2010/12/google-interactive-bar-chart-for-web.html[/url]

Member Avatar for Ichcha
0
211
Member Avatar for newbie14

maybe you can join your database tables. Take this another expand collapse, maybe it helps: [url]http://codewall.blogspot.com/2011/01/div-expand-and-collapse-in-javascript.html[/url]

Member Avatar for newbie14
0
113
Member Avatar for foxwizzy
Member Avatar for codewall
0
152
Member Avatar for wova

There are a lot of advantage when using MySQL, its free, SUN Microsystems supported, fast. In MS SQL when you set the size, for example 20 and you put a value more 20 character it will give you an error but when My SQL it will accept only character fit …

Member Avatar for codewall
0
71
Member Avatar for keval_hack

I think it's a template found in blogspot gallery they customize to look great.

Member Avatar for codewall
0
68
Member Avatar for rhiang1984

Maybe you can view this post, hope it will give you some idea to solve your problem. [url]http://codewall.blogspot.com/2011/03/upload-image-in-folder-in-php-step-by.html[/url]

Member Avatar for codewall
0
957
Member Avatar for tohobaby

document.getElementById('some_id').style.fontFamily='courier'; document.getElementById('some_id').style.fontFamily='verdana';

Member Avatar for twiss
0
196
Member Avatar for sandersen

The following error occurs because your code displaying some text before processing the header. Try to read this post. [url]http://codewall.blogspot.com/2010/12/php-cannot-send-session-cache-limiter.html[/url] hope it helps...

Member Avatar for ko ko
0
131
Member Avatar for asg333
Member Avatar for feoperro

Try to download this application, it used JQuery framework, hope it helps. [url]http://codewall.blogspot.com/2011/03/php-quiz-maker-application.html[/url]

Member Avatar for feoperro
0
265
Member Avatar for nizuya

Maybe Javascript can't locate apply id or apply is not located in that page.

Member Avatar for nizuya
0
92
Member Avatar for dsfedsdsdsdsfds
Member Avatar for branding4you

Try to specify css in some browser, try to read this post, hope it helps. [url]http://codewall.blogspot.com/2010/12/specify-css-in-different-browsers.html[/url]

Member Avatar for codewall
0
163
Member Avatar for cagline

You can use ajax, ajax has a property that you can control and manipulate an event. Maybe this post ca help. [url]http://codewall.blogspot.com/2011/03/learn-what-is-ajax-step-by-step.html[/url]

Member Avatar for codewall
0
72
Member Avatar for anita_86

If you don't want the value to be lost when refresh maybe you can use session variable.

Member Avatar for codewall
0
76
Member Avatar for susheelsundar

Maybe you can search more js calendar that works in all browser type, for now try this post maybe its help. [url]http://codewall.blogspot.com/2010/12/specify-css-in-different-browsers.html[/url]

Member Avatar for codewall
0
234
Member Avatar for anandhikrishnan

try to assign id to your textfield and access it in javascript. Javascript: function a() { document.getElementById('mytext').focus(); } Form: <input type="text" nane="mytext" id="mytext" />

Member Avatar for codewall
0
82
Member Avatar for siknoz

Try to read this post, hope it will help and give you an idea. [url]http://codewall.blogspot.com/2011/01/div-expand-and-collapse-in-javascript.html[/url]

Member Avatar for codewall
0
91
Member Avatar for satimis

maybe this can help, please read this post. [url]http://codewall.blogspot.com/2011/02/create-simple-menu-in-html.html[/url]

Member Avatar for codewall
0
93
Member Avatar for channsoung

If you have login in your site this is very simple, just create database table containing users who login and you can count it using sql count function when querying. If you don't have try to use Google analytics, its free and you can track your visitors, views and statistics.

Member Avatar for tomato.pgn
0
108
Member Avatar for samsons17

You can create database table that have id,image and details, first upload the image first and insert into database table. Since the image have its own unique id you can query the id and assign to hidden textfield in next form(form detail), with this form you can update(insert info) the …

Member Avatar for tomato.pgn
0
809
Member Avatar for jacob21
Member Avatar for codewall
0
61
Member Avatar for xagutxu
Member Avatar for xagutxu

maybe this help. [url]http://codewall.blogspot.com/2010/12/php-cannot-send-session-cache-limiter.html[/url]

Member Avatar for xagutxu
0
86
Member Avatar for CanadianGSX

change $num_rows > 0 && $type = 1 $num_rows > 0 && $type = 2 $num_rows > 0 && $type = 3 to $num_rows > 0 && $type == 1 $num_rows > 0 && $type == 2 $num_rows > 0 && $type == 3

Member Avatar for CanadianGSX
0
102
Member Avatar for andrewliu
Member Avatar for niimenz

maybe this help, this is my login script using jquery [CODE] <?php session_start(); require_once("includes/includes.db.php"); ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <link type="text/css" href="jquery/css/south-street/jquery-ui-1.8.custom.css" rel="stylesheet" /> <script type="text/javascript" src="jquery/js/jquery-1.4.2.min.js"></script> <script type="text/javascript" src="jquery/js/jquery-ui-1.8.custom.min.js"></script> <script type="text/javascript"> $(function() { username = …

Member Avatar for codewall
0
92
Member Avatar for ON_Jtharpe

maybe this help [url]http://codewall.blogspot.com/2010/12/simple-login-in-php.html[/url]

Member Avatar for codewall
0
152
Member Avatar for anita_86
Member Avatar for novedturn

I think you can use [B]join[/B], inner join, left join, right join or cross join, ex, select a.numbers,b.numbers from table1 as a inner join table2 as b on a.id = b.id

Member Avatar for novedturn
0
93
Member Avatar for sateal8

maybe this help... [url]http://codewall.blogspot.com/2011/01/how-to-read-input-from-console-in-java.html[/url]

Member Avatar for sateal8
0
196
Member Avatar for vaibhav1983
Member Avatar for vaibhav1983
0
132
Member Avatar for restrictment
Member Avatar for mangopearapples
Member Avatar for tcollins412
Member Avatar for vin24

maybe this help [CODE] import java.io.*; public class ReadFile { public static void main(String[] args) { File file = new File("C:\\sample_text.txt"); FileInputStream fis = null; BufferedInputStream bis = null; DataInputStream dis = null; try { fis = new FileInputStream(file); // Here BufferedInputStream is added for fast reading. bis = new …

Member Avatar for JamesCherrill
0
150
Member Avatar for sagar2911

If you want xampp (opensource apache mysql php and pearl) you can view my step by step tutorial: [url]http://codewall.blogspot.com/2011/01/how-to-install-xampp-step-by-step.html[/url] or read my of my tutorials regarding mysql in xampp: [url]http://codewall.blogspot.com/p/my-tutorial.html[/url]

Member Avatar for codewall
0
151
Member Avatar for aitha
Member Avatar for codewall
0
46
Member Avatar for techalerts

I my college days, my project was an IDE for assembly language using java... maybe you can do also the same way...

Member Avatar for codewall
0
48
Member Avatar for skald89

maybe this can give you an idea [url]http://codewall.blogspot.com/2009/08/toggle-background-color-using.html[/url]

Member Avatar for codewall
0
247
Member Avatar for skald89

maybe this help <form name='myform' action='page3.html' method='post'> ---- some form elements ---------------- </form>

Member Avatar for skald89
0
110
Member Avatar for emen24

maybe this help. [url]http://codewall.blogspot.com/2010/12/simple-login-in-php.html[/url]

Member Avatar for emen24
0
114
Member Avatar for jrhitokiri

maybe this help.. removing the spaces before and after text you can use trim() function

Member Avatar for jrhitokiri
0
126
Member Avatar for phpDave

if you don't want image path name duplication try to set the field to unique.

Member Avatar for phpDave
0
166
Member Avatar for Hawkeye Python

maybe you can do this... [CODE] $(document).ready(function () { var x = '- Table1'; $('#table1_head').click(function () { if(x == '- Table1') x = '+ Table1'; else x = '- Table1'; $('#button1 a').replaceWith(x); }); }); [/CODE]

Member Avatar for Hawkeye Python
0
192
Member Avatar for xuexue

maybe this help [CODE] <script language="javascript"> function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; var row = table.insertRow(rowCount); var cella = row.insertCell(0); cella.style.backgroundColor='#FF0000'; var element1 = document.createElement("input"); element1.type = "text"; element1.name = "txtManufacturer[]"; element1.size = "10"; cella.appendChild(element1); } </script> [/CODE]

Member Avatar for codewall
0
89

The End.