منتديات الشروق أونلاين

منتديات الشروق أونلاين (http://montada.echoroukonline.com/index.php)
-   منتدى الأنترنت (http://montada.echoroukonline.com/forumdisplay.php?f=22)
-   -   الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp) (http://montada.echoroukonline.com/showthread.php?t=105589)

الأيهم 13-08-2009 12:24 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة bellasoft (المشاركة 776406)
بما أن التمرين صعب

فضلت وضع تطبيق أسهل

الدرس الخامس

http://montada.echoroukonline.com/sh...d.php?t=105946

لا يا اخي عبد الله الدرس واضح
وا لكن عندي استفسار بسيط
الا يوجد جدول كيفية معرفة القسمة وا ضرب لي هذه عمليات
ربما انك فهمتني مذا اقصد
على ما اضن يوجد جدول لي معرفة حسبات لي تسهيل الفهم
انتضر منك الرد

هجورة 13-08-2009 02:01 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
هنا حبستsurrender
icon36

Just thinking 13-08-2009 02:55 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة red scorpion (المشاركة 777428)
لا يا اخي عبد الله الدرس واضح
وا لكن عندي استفسار بسيط
الا يوجد جدول كيفية معرفة القسمة وا ضرب لي هذه عمليات
ربما انك فهمتني مذا اقصد
على ما اضن يوجد جدول لي معرفة حسبات لي تسهيل الفهم
انتضر منك الرد

بلى يوجد جدول العمليات و هو في درس المتغيرات
ستجده عبارة عن صورة

Just thinking 13-08-2009 02:56 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة *عَزْفُ الدُّمُوعْ* (المشاركة 777490)
هنا حبستsurrender

icon36

كنت أنتظر سؤال حول النقطة المبهمة
لكن لا يهم يمكنك الإنتقال للدرس التالي فالتمرين لا يعطل المتابعة
icon30

Just thinking 15-08-2009 04:25 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة مروة بكرار (المشاركة 779500)
إذا كان س < ع إذن
نكتب "س أكبر من ع"
there is a mistake here.correct it plzbleh

i think that it is due to the inversion of symbols between arabic and in latin

this symbol (for exemple) (<) is (smaler than) in arabic but it is
(bigger than) in Latin you see


<CODE style="WHITE-SPACE: nowrap"><CODE><?php
$x=10;$y=20;
If ($x>$y)i
i don't know why i didn't secceed in this exemple
from when 10 is bigger than 20
$x=10;$y=20;
If ($x<$y) is this the problem? plz help me

</CODE></CODE>

كود PHP:

<?php 
$x
=10;$y=20;
If (
$x>$y)
{
echo 
"x est supérieur à y";
}
else
{
echo 
"x n'est pas supérieur à y";
}
?>


if you talk about this example i can say that it work correctly

we know that 10<20 so the first echo will not be executed but the second will be.

if test the condition between brackets
if it is true he execute the next instruction
if not he execute the (else) instruction (if it exist, otherwise he does nothing at all)

is it ok now ??

مروة بكرار 15-08-2009 06:53 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
woooooooooooooooooooooow..
what could be better than that.
it works only with logicsly
but.i have a question
if you don't write the codes to us
how can we write them.
to me .this job needs a person who knows how does notepad++ works.
nice jobclap ...well doneicon30...exellent.clap..
what can i say more..
i am speechlessnosweat...
allahoma ati akhi fi dounia 7assana wa fi el akhirati 7assana wa 9ihi 3adhab elnar...
allahoma aaaaaaaaaaaaaaaaaaaaaaamiine

مروة بكرار 15-08-2009 07:05 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة BellaSoft (المشاركة 779590)
كود PHP:

 $x=10;$y=20;
If (
$x>$y)
{
echo 
"x est supérieur à y";
}
else
{
echo 
"x n'est pas supérieur à y";
}
?> 


if you talk about this example i can say that it work correctly

we know that 10<20 so the first echo will not be executed but the second will be.

if test the condition between brackets
if it is true he execute the next instruction
if not he execute the (else) instruction (if it exist, otherwise he does nothing at all)

is it ok now ??


ooooh no that was my mistake...yeah it works very well...i actully deleted this comment i was thinking that you didn't see it yet.
sorry again.
every time i do something stupid.
before i read the lesson.i started asking questions.
i'm really sorry plz accept my apology

Just thinking 15-08-2009 07:44 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة مروة بكرار (المشاركة 779799)
woooooooooooooooooooooow..
what could be better than that.
it works only with logicsly
but.i have a question
if you don't write the codes to us
how can we write them.

it's what you must do in the next time
i'll see icon30

to me .this job needs a person who knows how does notepad++ works.

not at all, you will be able to do it since next time

nice jobclap ...well doneicon30...exellent.clap..
what can i say more..
i am speechlessnosweat...
allahoma ati akhi fi dounia 7assana wa fi el akhirati 7assana wa 9ihi 3adhab elnar...
allahoma aaaaaaaaaaaaaaaaaaaaaaamiine

thanks a lot
see you next time

Just thinking 15-08-2009 07:46 PM

رد: الدرس الرابع: الجمل الشرطية و حلقات التكرار (دورة الـphp)
 
اقتباس:

المشاركة الأصلية كتبت بواسطة مروة بكرار (المشاركة 779810)
ooooh no that was my mistake...yeah it works very well...i actully deleted this comment i was thinking that you didn't see it yet.
sorry again.
every time i do something stupid.
before i read the lesson.i started asking questions.
i'm really sorry plz accept my apology

don't worry, you do your work like it should be.
good luck


الساعة الآن 05:27 AM.

Powered by vBulletin
قوانين المنتدى