Gopalaa

Gopalaa (Hindi: गोपाला) is a 1994 Bollywood action film directed by Akash Jain and starring Chunky Pandey, Shilpa Shirodkar and Roopa Ganguly in the lead roles.

Gopalaa
Poster
Directed byAkash Jain
Produced byVeena Khanna
StarringChunky Pandey
Shilpa Shirodkar
Roopa Ganguly
Kiran Kumar
Prem Chopra
Music byAnu Malik
Production
company
R.K. Movies Unit
Release date
1994
CountryIndia
LanguageHindi

Story

Rudra Pratap Singh (Prem Chopra) plans a conquest of India. Major Anand (Chunky Pandey) defeats him, but fails to nab him. Rudra retaliates by attacking Anand after his wedding, and kills him. His wife, Pooja (Roopa Ganguly) identifies Rudra and his brother, Bhanu, but the court's verdict is "not guilty". She kills Bhanu in court, and gets only a life sentence, as she is expecting. Years later, she finds that her son, now known as "Gopalaa" (Chunky Pandey), is now a hit-man working for none other than Rudra.

Cast

Soundtrack

#Song TitleSinger(s)Lyricist(s)
1 "Aaj Akele Mein Hum Dono" Kumar Sanu, Kavita Krishnamurthy Rani Malik
2 "I Am A Beautiful Miss" Alka Yagnik Sameer
3 "Mera Gopalaa" Kavita Krishnamurthy Rani Malik
4 "Pyaar Banke Nasha" Kumar Sanu, Devaki Pandit Rani Malik
5 "Premika Premika" Amit Kumar, Alka Yagnik, Chunky Pandey Dev Kohli
6 "Tumhari Kasam" Kumar Sanu, Kavita Krishnamurthy Rani Malik

[1]

gollark: One of these days I really ought to add login and CSRF prevention.
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.