need help in assignmnt

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
fiza
Forum Newbie
Posts: 5
Joined: Sun Aug 23, 2009 12:13 pm

need help in assignmnt

Post by fiza »

hi kindly help me abt following example
1 1
1 2 2 1
1 2 3 3 2 1
1 2 3 4 3 2 1
i had tried this example bt hopless :banghead:
tnx
User avatar
Weiry
Forum Contributor
Posts: 323
Joined: Wed Sep 09, 2009 5:55 am
Location: Australia

Re: need help in assignmnt

Post by Weiry »

what exactly are you trying to do?
User avatar
John Cartwright
Site Admin
Posts: 11470
Joined: Tue Dec 23, 2003 2:10 am
Location: Toronto
Contact:

Re: need help in assignmnt

Post by John Cartwright »

This is homework? Hmm..

Doesn't mean we won't help. What have you tried?
fiza
Forum Newbie
Posts: 5
Joined: Sun Aug 23, 2009 12:13 pm

Re: need help in assignmnt

Post by fiza »

Weiry wrote:what exactly are you trying to do?
firstly tnx 4 reply..
actually just started my carrier in php..
nd i hv many basic examples 4 learing..
this is nt homework..
im practicng nd clear logics regarding fundamentals..
evn i read many tutorials on the net..
bt my logics doesnt clear so thts y try 2 do vry basic..
nd i request u 2 guise help me abt my carreir learing..
hopfuly u r getting my point..
fiza
Forum Newbie
Posts: 5
Joined: Sun Aug 23, 2009 12:13 pm

Re: need help in assignmnt

Post by fiza »

Weiry wrote:what exactly are you trying to do?
nd if u knw any links which is useful for me
so let me knw or if u hav suggestion 4 learing
this kindly share wid me
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: need help in assignmnt

Post by requinix »

I'd be so much more inclined to help if it looked like the OP could speak some recognizable language. I didn't even bother trying to read anything he wrote.

Lemme try:
plz pst sum code so we cn c wat u trid 2 do
fiza
Forum Newbie
Posts: 5
Joined: Sun Aug 23, 2009 12:13 pm

Re: need help in assignmnt

Post by fiza »

tasairis wrote:I'd be so much more inclined to help if it looked like the OP could speak some recognizable language. I didn't even bother trying to read anything he wrote.

Lemme try:
plz pst sum code so we cn c wat u trid 2 do
alright i did thse sort of examples coz somone said use thse things thn ur logic vil b clear, ok im pasting som of codes.

for($a=0; $a<=10; $a++)
{
echo "$a";
}
------------------------
$num=4;
$factorial=1;
for($num=4; $num>1; $num--)
{
$num*$factorial;
{
echo "$num";
------------------------------
for($a=1; $a<=10: $a++)
{
echo "2x$a=" . 2$a;
echo "<br>";
}
-----------------------------
<table >
<?php
for($i=1;$i<=10;$i++)
{
echo "<tr>";
for($j=1;$j<=10;$j++)
{
echo "<td><table><tr><td>".$j."</td><td>*</td><td>".$i."</td><td>=</td><td>".$i*$j."</td></tr></table></td>";
}
echo "</tr>";

}
?>
<tbody>
</table>
User avatar
Mirge
Forum Contributor
Posts: 298
Joined: Thu Sep 03, 2009 11:39 pm

Re: need help in assignmnt

Post by Mirge »

fiza wrote:
Weiry wrote:what exactly are you trying to do?
nd if u knw any links which is useful for me
so let me knw or if u hav suggestion 4 learing
this kindly share wid me
Good GRIEF, please spell out words completely... not omitting characters where you feel like it. And wrap code within

Code: Select all

tags.
Post Reply