2012년 사진공모전 여름을 알리는 감포의 일출 아이폰3Gs으로 촬영
테이블 생성 쿼리 확인
show create table table_name
mysql> desc test;
mysql> show create table test;
show create table table_name
mysql> desc test;
mysql> show create table test;
009년 1월 강릉 바다가에서 TISTORY 달력 사진 공모전에 응모 합니다.
$couponArray = array(
0=>"A",1=>"B",2=>"C",3=>"D",4=>"E",
5=>"F",6=>"G",7=>"H",8=>"I",9=>"J",
10=>"K",11=>"L",12=>"M",13=>"N",14=>"O",
15=>"P",16=>"Q",17=>"R",18=>"S",19=>"T",
20=>"U",21=>"V",22=>"W",23=>"X",24=>"Y",
25=>"Z",26=>"0",27=>"1",28=>"2",29=>"3",
30=>"4",31=>"5",32=>"6",33=>"7",34=>"8",
35=>"9"
);
srand((double)microtime()*1000000); //난수값 초기화
for($i=0;$i<8;$i++){
$randNo = rand(0,35); //0과 35사이의 난수를 구한다
$resultStr .= $couponArray[$randNo];
}
echo$resultStr;
?>

Prev

Rss Feed