Frames
Frames एक HTML Element हैं, जिनका use किसी Web Page को कई Section या Frames में Divide करने के लिए किया जाता है। प्रत्येक Frame में एक अलग HTML Document हो सकता है, जो आपको एक ही Browser Window में Multiple Web Pages को Display करने की Permission देता है। Frame को <frame> Element का use करके Define किया जाता है, जो <frameset> Structure का हिस्सा है।
Example: Create Vertical Frames
Output:
IFrames
IFrames (Inline Frame) Frame के समान होते हैं, लेकिन <iframe> Element का use करके Web Page के Content के भीतर Embedded होते हैं। इनका उपयोग आमतौर पर किसी Web Page के भीतर External Content, जैसे Maps, Video या Advertisements Display करने के लिए किया जाता है।
Example:
Differences between Frames and IFrames
- Usage: Frame का उपयोग किसी Web Page को कई Section में विभाजित करने के लिए किया जाता है, प्रत्येक Section एक अलग Web Page Dispaly करता है। IFrames का Use Single Web Page के भीतर External Content को Embed करने के लिए किया जाता है।
- Syntax: Frame को <frameset> के भीतर <frame> Element का use करके Define किया जाता है, जबकि IFrames सीधे HTML Content के भीतर <iframe> Element का use करके बनाए जाते हैं।
- Communication: एक ही Frameset के भीतर Frame Javascript का use करके एक दूसरे के साथ Communication कर सकते हैं। जबकि IFrames में एक Stricter Security Model होता है, और आमतौर पर Same-Origin Policy के कारण एक-दूसरे के साथ सीधे Communication नहीं कर सकते हैं।
HTML Form
HTML (Hypertext Markup Language) Web Page का Backbone है, और इसका उपयोग Internet पर Content के Structure के लिए किया जाता है। इसकी Essential Feature में से एक Form बनाने की क्षमता है, जो User को Data Intput करने की Permission देती है| जिसे आगे की Process के लिए Web Server पर Submit किया जा सकता है।
Syntax of an HTML Form
- Action Attribute उस URL को Specify करते है, जहां Submit होने पर Form Data Send किया जाएगा।
- Method Attribute Server पर Form Data Send करते Time उपयोग की जाने वाली HTTP Method को Define करती है। Comman Method GET और POST हैं।
Form Elements
HTML विभिन्न Form Element Provide करता है, जो User को विभिन्न प्रकार के Data Intput करने की Permission देता है। सबसे अधिक use किए जाने वाले Form Element में से कुछ में शामिल हैं-
- Text Input
- Password Input
- Radio Buttons
- Checkboxes:
- Dropdown Select:
- Text Area:
- Submit Button:
Example:
आइए कुछ Element के साथ एक Simple HTML Form बनाएं और Form Submit होने पर Output Display करें। इस Example में, हम Form Submissions को Handle और Submit किए गए Data को Display करने के लिए PHP का use करेंगे।
HTML Form:
PHP Processing Script:
जब आप Form भरते हैं, और “Submit” Button पर Clcik करते हैं| तो आपके द्वारा Enter किया गया Data Process.php Script पर भेजा जाएगा, जो फिर Submit की गई Information को एक नए Page पर Display करेगा।