answersLogoWhite

0

A file with the DIV file extension is a DivX Movie file, it cannot be created with PHP.

PHP is a web programming language for web site building.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

Can you create div in textarea in HTML?

No you can't. While you can put div tags inside textarea tags, as anything in the textarea is treated only as text, the browser will ignore the div tags and they will show as text only and so have no impact. So if you do want sections for text, you would have to look at other ways of doing it, like having several text areas with different formatting.


How do you center a div in Google Chrome?

If you center a <div> in Chrome, it becomes center. It can be changed in the HTML file of the source.


How do you post in blogger using HTML?

<div id="header"> <div id="footer"> <div id="content"> <div id="sidebar"> <div class="post">


How do you make div by using css?

You can make CSS inside a div but not div in CSS. CSS inside div could be done by : <do=iv style="">.


How Do I Prepare to E-file Form 1099 DIV?

Did you pay $600 as dividends to the shareholders in the prior year? then you need to file Form 1099 DIV. As per the IRS norms, 1099 DIV is sent by banks and financial institutions to the investors who receive dividends in a tax year.


How can you direct search results to a div anywhere on the page?

You would want to do this with an AJAX request. The Javascript on the client's browser would send a request to the server, and place the response in the appropriate div. For example, using the jQuery library, it could be done like this: <div id="results></div> <input type="text" id="searchstring"></input> <button type="submit" onclick="dosearch(); return false;">Search</button> <script type="text/javascript"> function dosearch(){ $.post('search.php', {'q' : $('#searchstring').val()}, function(answer){ $('#results').html(answer); }); } </script> This takes the text out of the "searchstring" text field, posts it to "search.php", and replaces the contents of the "results" div with the resulting output. In the "search.php" file, you can read the search string from the posting - that would be $_POST['q'] - and simply output whatever results you want to display in that div.


What is the html code to make letter blocks?

I believe you mean divs. These can be made using the following tag: <div> Divs can be styled using CSS. You can specify a class or id to your div in the following way: <div class="classname"> and <div id="idname">


What is an example script that would upload a file using PHP?

Here is an example script: <html> <head><strong><div align="center">File Upload!!</div></strong></head> <body> <form name="form1" enctype="multipart/form-data" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" > File: <input type="file" name="file" id="file" /> <input type="submit" name="submit" value="Upload" > </form> <?php if(isset($_POST['submit'])) { if ($_FILES['file']['error'] > 0) { echo "Error: " . $_FILES['file']['error'] . "<br />"; } else { echo "Upload: " . $_FILES['file']['name'] . "<br />"; echo "Type: " . $_FILES['file']['type'] . "<br />"; echo "Size: " . ($_FILES['file']['size'] / 1024) . " Kb<br />"; echo "Stored in: " . $_FILES['file']['tmp_name']; if (file_exists("../" . $_FILES["file"]["name"])) { // Checks if the file already exists echo "<br>".$_FILES["file"]["name"] . " already exists. "; } else { // If file does not exists, moves the file to folder move_uploaded_file($_FILES["file"]["tmp_name"], "../" . $_FILES["file"]["name"]); echo "<br>Stored in: " . realpath("../" . $_FILES["file"]["name"]); } } } ?> </body> </html


How can you construct website using div tag?

The <div> tag defines a division or a section in an HTML document. The <div> tag is used to group block-elements to format them with CSS.


What is the different between table tag and div tag in HTML?

The table tag is used to create a table, which is a type of block-level element. The div tag is used to create a generic block element. The main difference is that tables are best-suited for tabular data, and divs are best-suited to presentation of non-tabular data.


How can you edit a certain part of lots of html5 pages with one external file for example editing a little part on each page called News or most popular easily by editing an external file?

That can be done using JavaScript and on each webpage a Div with a set ID. Then you can add the elements to your page using document.createElement and document.addChild, linking the ID's of the areas (div) that you want to edit? If you are not sure how to do this, just google it. Stackoverflow is one great resource.


What is the code for a search bar?

Place this code in your page: <style type="text/css"> @import url(http://www.google.com/cse/api/branding.css); </style> <div class="cse-branding-right" style="background-color:#000000;color:#FFFFFF"> <div class="cse-branding-form"> <form action="http://www.google.com/cse" id="cse-search-box"> <div> <input type="hidden" name="cx" value="partner-pub-0189838191925575:2eywcrgs2pz" /> <input type="hidden" name="ie" value="ISO-8859-1" /> <input type="text" name="q" size="31" /> <input type="submit" name="sa" value="Search" /> </div> </form> </div> <div class="cse-branding-logo"> <img src="http://www.google.com/images/poweredby_transparent/poweredby_000000.gif" alt="Google" /> </div> <div class="cse-branding-text"> Custom Search </div> </div> Place this code in your page: <style type="text/css"> @import url(http://www.google.com/cse/api/branding.css); </style> <div class="cse-branding-right" style="background-color:#000000;color:#FFFFFF"> <div class="cse-branding-form"> <form action="http://www.google.com/cse" id="cse-search-box"> <div> <input type="hidden" name="cx" value="partner-pub-0189838191925575:2eywcrgs2pz" /> <input type="hidden" name="ie" value="ISO-8859-1" /> <input type="text" name="q" size="31" /> <input type="submit" name="sa" value="Search" /> </div> </form> </div> <div class="cse-branding-logo"> <img src="http://www.google.com/images/poweredby_transparent/poweredby_000000.gif" alt="Google" /> </div> <div class="cse-branding-text"> Custom Search </div> </div>