php106 PHP 배열로 된 테이블의 값을 담은 값으로 테이블 만들기 //배열로 input 테이블 만들기 2008. 10. 19. PHP The 30 Minute Regex Tutorial Learning .NET Regular Expressions with Expresso Did you ever wonder what Regular Expressions are all about and want to gain a basic understanding quickly? My goal is to get you up and running with a basic understanding of regular expressions within 30 minutes. The reality is that regular expressions aren't as complex as they look. The best way to learn is to start writing and experimenting. Afte.. 2008. 10. 19. PHP 배열 지정한 위치부터 입력하기 $gametitle = array(1 => '국내야구','해외야구','국내축구','해외축구','국내농구','NBA'); echo $gametitle[1]; 결과: 국내야구 1 => : 배열 0부터가 아니라 1부터 기록 6번째 배열 값은 "NBA" 가 됨. 2008. 10. 19. PHP 배열에 지정한 이름으로 값을 담아두기 $month = array("Jan"=>"01","Feb"=>"02","Mar"=>"03","Apr"=>"04","May"=>"05"); 지정한 이름으로된 배열에 값을 일치 시킴 2008. 10. 19. 이전 1 ··· 9 10 11 12 13 14 15 ··· 27 다음