Download php content using cli

I'm trying to make a bash script that downloads videos from websites. Is there a cli program for linux that allows me to download php content using one command line entry?

I can't use cli curl or wget for this(I think). I'm talking about addresses like these:

****.com/content.php?file=movie.wmv

Did you even try ?

 wget ****.com/content.php?file=movie.wmv

It may be refusing to do so because you're not the right client or don't have the right referrer.

wget -U netscape --referer=http://www.website.com wget http://www.website.com/...

Or it might actually be downloading a URL list or something that tells you where to go next.