ظ…ط¹ط¶ظ… ط¯ظˆط§ظ„ ط§ظ„ mysql ظپظٹ ظ„ط؛ط© ط§ظ„ php ظ…ط±ط¬ط¹ ظ„ظƒظ„ ظ…ط¨ط±ظ…ط¬



معضم دوال ال mysql في لغة ال php مرجع لكل مبرمج

بسم الله الرحمن الرحيم



الإتصال بقاعدة البيانات


كود code PHP:

كود code PHP:







تحديد قاعدة بيانات


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> $dbselect=mysql_select_db('db_name', $connect);
</code> </code>








إرسال إستعلام لقاعدة البيانات


كود code PHP:
<DIV style=&quot;MARGIN: 5px 20px 20px&quot; align=center>كود code PHP:
<DIV class=alt2 style=&quot;BORDER-RIGHT: 1px inset; PADDING-RIGHT: 6px; BORDER-TOP: 1px inset; PADDING-LEFT: 6px; PADDING-BOTTOM: 6px; MARGIN: 0px; OVERFLOW: auto; BORDER-LEFT: 1px inset; WIDTH: 640px; PADDING-TOP: 6px; BORDER-BOTTOM: 1px inset; HEIGHT: 34px&quot;>
رمز PHP:
<code style="white-space:nowrap"> <code> &#91;php&#93; $query=mysql_query("select or update or insert or delete or drop or show ......");
</code> </code>

&#91;/php&#93;





لإستعادة نتائج الإستعلام في جدول (معلومات السطر المحدد فقط)


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> $info=mysql_fetch_array($query);
</code> </code>











لإستعادة نتائج الإستعلام في جدول


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> $info=mysql_fetch_row($query);
</code> </code>








إنشاء قاعدة بيانات جديدة


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> $createdb=mysql_create_db (database_name , $connect);
</code> </code>








الإنتقال إلى نتيجة معينة في نتائج الإستعلام


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> $seek=mysql_data_seek ($query, row_number);
</code> </code>








إنهاء الإتصال مع قاعدة البيانات


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> mysql_close($connect);
</code> </code>








عدد نتائج الإستعلام في قاعدة البيانات


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> $num=mysql_num_rows($query);
</code> </code>








للحصول على النتيجة التي تمه الإستعلام عنها


كود code PHP:

كود code PHP:
رمز PHP:
<code style="white-space:nowrap"> <code> mysql_result ($query, row , field );
</code> </code>












©المشاركات المنشورة تعبر عن وجهة نظر صاحبها فقط، ولا تُعبّر بأي شكل من الأشكال عن وجهة نظر إدارة المنتدى©