1. PHP���ݿ�����˵��������
����һ����PHP ����MYSQL���ݿ������
<?php
$dbh = mysql_connect(' ','�����û���','��������'); ����������������ᣬ������LOCALHOST��
mysql_select_db('���ݿ���');
$query = "insert into requests(date, request, email,
priority,status) values (NOW(),'$description', '$email', '$priority',
'NEW')";
$res = mysql_query($query, $dbh);
$query = "select max(id) from requests";
$res = mysql_query($query, $dbh);
$err = mysql_error();
if($err){
echo "����������֪ͨ<a href=mailto:webmaster@my.site>վ��</a>";
}
$row = mysql_fetch_row($res);
echo "δ����ʹ�õĺ���Ϊ: ".$row[0];
?>
2.Perl˵��������
��Ҫ�ڳ���ĵ�һ�����ý�����·��
һ��perl����
#!/usr/bin/perl
print 'Hello world.'; # Print a message
3��ANSI C ˵��������
c �����DZ����������û��ij�����Ҫ�����Ƿ������±������ʹ�á�
�����û���Ҫtelnet Ȩ�ޡ�
�����������£�gcc �ļ���.c -o �ļ���
4. MYSQL ʹ��˵��
�����Ƽ��û���WEB��ʽ�µ�phpMyAdmin ���������ݿ⣬�������ڿͻ���ʹ����������ܶ����ݿ���й������ȴ����ǵ���վ����������ļ�����������ļ���ѹ��֮����WEB������������һ���ļ��С�����ѹ���ȫ���ļ��ϴ������Ŀ¼�£����ϴ�֮ǰ����config.inc.php3�ļ��ڵ����á������е�"�û���������"�Ĵ���ĵط������������ȫ���ģ������̡�������һ��phpMyAdmin�������ļ�config.inc.php3�������������µķ�ʽ���겢���̡�
$cfgServers[1]['user'] = 'root'; ��root��Ϊ�����û���
��'d****'.����
$cfgServers[1]['user'] = 'd1180';
$cfgServers[1]['password'] = '';��'password'����������
��'a1b2c3d4' ����
$cfgServers[1]['password'] = 'a1b2c3d4'
��ֻ����������ĵ�ַ���������磺http://www.yourdomain.com/phpMyAdmin/
���ܶ����ݿ���в�����
|