Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
86% Quality Score
Upvotes Received
24
Posts with Upvotes
22
Upvoting Members
17
Downvotes Received
4
Posts with Downvotes
4
Downvoting Members
3
7 Commented Posts
4 Endorsements
Ranked #397
Ranked #490
~69.0K People Reached
About Me

im a guy

Favorite Tags

132 Posted Topics

Member Avatar for wackyal

i advice you shour separate `$example1 = "person-1@here.com, person_2@there.net; person.3@wayoverthere.com";` in the same character like `( ; )` then you can use the php explode() `$emails = explode(';',$example1);`

Member Avatar for Dani
0
4K
Member Avatar for wuzere.crewzz

copy and paste this <HTML> <HEAD> <TITLE> Add/Remove dynamic rows in HTML table </TITLE> <SCRIPT language="javascript"> function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; var row = table.insertRow(rowCount); var colCount = table.rows[0].cells.length; for(var i=0; i<colCount; i++) { var newcell = row.insertCell(i); newcell.innerHTML = table.rows[0].cells[i].innerHTML; //alert(newcell.childNodes); switch(newcell.childNodes[0].type) { …

Member Avatar for Phoenix_2
0
8K
Member Avatar for code739

please help me in this,how would i do some recursive statement in my stored procedure. here is what i want -- @requestcode will genereate some random string set @requestcode = (SELECT substring(@username,0,3)+'-'+SUBSTRING(CONVERT(varchar(255), NEWID()), 0, 9)) -- then i want to check if the string generated is existing to 'sampletable' select …

Member Avatar for BlindArcher
0
227
Member Avatar for davidjennings

you can upload file without using the drive name.. note that Source ->>(should have already an access)->> Destination then you could access it the destination like: $config['upload_path'] = '\\\\ipaddressOrName\\sharedpath';

Member Avatar for davidjennings
0
492
Member Avatar for davy_yg

This flow might help ---controller 1. controller :(loads the form) --- view 2. form : you can start the form by this "echo form_open('[redirect to contact function for sending email]')" perhaps contact funtion accepts parameters like "email" for from,"subject" and "body" on submit #note be sure you loaded the form …

Member Avatar for davy_yg
0
329
Member Avatar for <M/>
Member Avatar for shivlahane

yes it is possible depends also on what web language you want to pair with oracle me i experiece pairing it with php i use oci http://php.net/manual/en/function.oci-connect.php

Member Avatar for Meir David
0
157
Member Avatar for ebam
Re: HTML

the above examples are right you could also try this site in making a favicon http://www.favicon.cc/

Member Avatar for austinluthers
0
143
Member Avatar for danimischiu

you could use the header('Content-type: text/xml'); then try to print a xml tags like the example below as it get data from the table the data will be displayed as xml $stmt = "select * from table"; $query = mysql_query($stmt); $data = array(); while($row=mssql_fetch_assoc($query)){ $data[] = array($_GET['query'] => $row); } …

Member Avatar for danimischiu
0
276
Member Avatar for vivek221

i think this could help $sendTo = 'test@localhost'; //valid email address created on your localhost mail server $subject = 'This is the subject'; $headers = "From: testing@localhost"; $msg = "The quick brown fox jumps over the lazy dog"; ini_set("SMTP","127.0.0.1"); ini_set("smtp_port","25"); mail($sendTo, $subject, $msg, $header);

Member Avatar for AARTI SHRIVAS
0
163
Member Avatar for Don Ocso

hi dude you could try this site i think this could help http://www.programr.com/zone/js

Member Avatar for Don Ocso
0
111
Member Avatar for code739

help me find out what's wrong with this code i got stuck with this error > ldap_search Search: Operations error <?php error_reporting(E_ALL); ini_set('display_errors', 'On'); $ADServer = 'sample.example.net'; $loginto = 'Aboitiz'; $uname = $_POST['uname']; $passwd = $_POST['pass']; $ldapconn = ldap_connect($ADServer) or die("Could not connect to LDAP server."); $ldaprdn = $loginto."\\".$uname; $ldapbind …

Member Avatar for LastMitch
0
2K
Member Avatar for Limiter

first you have to have 1.apache - for the webserver 2. php 3. mysql - for the database or you could download xampp (it has all of the stuff above) you could choose any text editor i am using subline text editor

Member Avatar for davy_yg
0
244
Member Avatar for dinhunzvi
Member Avatar for code739

here the link of an the image what i am expecting http://s1302.beta.photobucket.com/user/havefwithme/media/layout_zps7366480f.png.html but what i got is A(blue box) inherits the hieght of its mother container the b(red box) here is my css A{ border:1px solid blue; width: 300px; float:right; } B{ border: 1px solid red; position: fixed; bottom:0px; right:0px; …

Member Avatar for code739
0
561
Member Avatar for sagisgirl

my advice to you is at your db you should have allocated permission column like firstname | access maryjoye | 1-> admin then as the users login put the access column to a $_SESSION so you could use it on a session to easy identify what is the permission of …

Member Avatar for sagisgirl
0
204
Member Avatar for LogicWeb
Member Avatar for davy_yg

in fixing it dont echo the execution if you want to print the statement separate it like $sql = "select * from table"; echo $sql; $query = mysql_query($sql); but if you want to print the result follow veedeoo's advice

Member Avatar for TonyG_cyprus
0
127
Member Avatar for vishalonne

how about trying this one assuming $num is the number you want to fill $num = "4"; $len = strlen($num); $zeros = 5-$len; $no = ""; for($x=1;$x<=$zeros;$x++){ $no .="0"; } $no = $no.$num; echo $no;

Member Avatar for diafol
0
182
Member Avatar for dashawk
Member Avatar for techyworld
Member Avatar for techyworld
0
110
Member Avatar for FakeTales

assumint that the variable name of your array above is $array $index = 1; echo '<table>'; foreach($array as $val){ if($index==1){ echo '<tr>'; foreach($val as $key => $value ){ echo '<th>'.$key.'</th>'; } echo '<tr>'; } echo '<tr>'; foreach($val as $key => $value){ echo '<td>'.$value.'</td>'; } echo '</tr>'; $index++; } echo '</table>';

Member Avatar for FakeTales
0
205
Member Avatar for sofien.fkih

SELECT group_concat(revertrsn separator ' ') from LN08PENm #for mysql SELECT wm_concat(revertrsn)from LN08PENm # for oracle

Member Avatar for sofien.fkih
0
185
Member Avatar for Farhad.idrees

if youre using jquery function set_status(){ $('formname input').each(function() { if(this.disabled==true){ this.disabled=false; }else{ this.disabled=true; } }); } or native javascript function set_status(){ var len = document.former.elements.length; //please be noted that former is the name of your form for(var x=0;x<len;x++){ if(document.former.elements[x].disabled==true){ document.former.elements[x].disabled=false; }else{ document.former.elements[x].disabled=true; } } }

Member Avatar for code739
0
145
Member Avatar for nunuaziz_

be sure to run your mail server.. then have this php code ini_set("SMTP","127.0.0.1"); # set the smtp server ini_set("smtp_port","25"); # set port mail($sendTo, $subject, $msg, $header); #send mail

Member Avatar for veedeoo
0
952
Member Avatar for amrita111

in your button submit <input type="button" onclick="validator_function_from_js()" value="submit"/> then in your javascript have this function function validator_function_from_js(){ var username = document.getElementById('usernameidhere').value; var password = document.getElementById('passwordidhere').value; //then the rest of the code.... }

Member Avatar for code739
0
105
Member Avatar for sainigks

how about this ,getting the computer name `gethostname()` try to echo and it will display your computer name

Member Avatar for pritaeas
0
553
Member Avatar for Vincentas

; Maximum allowed size for uploaded files. upload_max_filesize = 20M ; Must be greater than or equal to upload_max_filesize post_max_size = 20M #php.ini

Member Avatar for code739
0
78
Member Avatar for Vincentas

you could a create a responsive website.. there are lots of frameworks that could help you on this some are http://twitter.github.com/bootstrap/ http://foundation.zurb.com/

Member Avatar for code739
0
110
Member Avatar for creativeideas

z-index is not an absolute measurement, where your specifying z-index your specifying relative heres: your updated code but it has a lil move .actionlist { background:#e6eaf6; border:1px solid #d9e0f4; border-radius:5px; width:132px; padding:8px 0 } .dott { list-style:none; background:yellow } .dott li{ height:20px;} .dott li a { padding:2px 9px; color:#454545; font-size:11px; …

Member Avatar for code739
0
363
Member Avatar for s0wh4t
Member Avatar for riseguim

be sure that you sql server is running then http://www.linuxquestions.org/questions/linux-server-73/cant-connect-to-local-mysql-server-through-socket-var-run-mysqld-mysqld-sock-753632/

Member Avatar for rsewak
0
389
Member Avatar for VijayaDurga

http://social.msdn.microsoft.com/forums/en/netfxnetcom/thread/a75533eb-131b-4ff3-a3b2-b6df87c25cc8/

Member Avatar for deceptikon
0
140
Member Avatar for NoCodeMonkey

yah jorgeM was right it depends on who you are being manage by. best case senario for that is you could grant those task which a network administrator had, which could be a good experience for a student..

Member Avatar for code739
0
299
Member Avatar for markstylor
Member Avatar for Bolabode

you could have also design you network with diffrent approach from the public network to your private network and you could also use their advice.

Member Avatar for code739
0
176
Member Avatar for Farhad.idrees

try this common function to check or uncheck input checkbox from 'formname' form function checkAll(){ var inputTags = formname.getElementsByTagName('input'); for (var i=0, length = inputTags.length; i<length; i++) { if (inputTags[i].type == 'checkbox') { if(inputTags[i].checked==true){ inputTags[i].checked = false; }else{ inputTags[i].checked = true; } } } }

Member Avatar for code739
0
274
Member Avatar for garyjohnson

did you see some javascript errors have you tried using browser development tools to see some javascript error.. like firefox just press `ctrl+shifg+j`

Member Avatar for garyjohnson
0
236
Member Avatar for earlxph8

yes you could have border without affecting space gaps because border already collpased

Member Avatar for Biiim
0
343
Member Avatar for bouncerfloridaalr

yah EvolutionFallen seems right in addition just be sure the your logout function is int logout.php if youve got to follow his code =).

Member Avatar for rsleventhal
0
3K
Member Avatar for shakayu
Member Avatar for ravel100
Member Avatar for hudhasama

can you give your table structure? and as what arti18 posted..there is a form as you save the username and password cause from your code there is no form.. from the savepassword.php file this line `$sql = "UPDATE admin SET admin_id='$admin_id', admin_password='$admin_password' WHERE admin_id='$admin' ";` $admin_id should contain post or …

Member Avatar for code739
0
226
Member Avatar for castajiz_2

http://blog.sqlauthority.com/2009/04/13/sql-server-introduction-to-joins-basic-of-joins/

Member Avatar for adam_k
0
225
Member Avatar for amith_ami

try to check if `$_GET['man_id']` is not empty or if `$_GET` is not empty or isset like if(isset($_GET) and !empty($_GET)){ print_r($_GET); }else{ echo 'empty'; exit; } befor this line ` $man_id=$_GET['man_id'];` @ line 3 lets see whats the result

Member Avatar for amith_ami
0
889
Member Avatar for anglwthnati2de

hope it will help http://en.wikibooks.org/wiki/Web_Development/Choosing_the_right_programming_language

Member Avatar for anglwthnati2de
0
148
Member Avatar for davy_yg

i found this on your code `$resultday = mysql_query("SELECT COUNT(idads) AS countidadsday GROUP BY date FROM adsmgt") or die(mysql_error());` basically this displays error because you declare group by before the table name so this should be the proper one `$resultday = mysql_query("SELECT COUNT(idads) AS countidadsday,date, time FROM adsmgt GROUP BY …

Member Avatar for davy_yg
0
182
Member Avatar for davy_yg
Member Avatar for code739

Hi guys, Need an effective suggestions on how to deal with this situation. Im working with php and mysql. Now the system i am creating needs to send emaill notification once a year.

Member Avatar for code739
0
266
Member Avatar for silent lover

yah its correct for just showing the tables... but be sure to declare first `$selected_venue_id` outside or inside the loop =) then you can have the attribute for `<select>` onchange

Member Avatar for silent lover
0
2K

The End.