Jump to content

bintech21

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by bintech21

  1. So let's say if i follow this video then very first step it suggests to make a database like below:- " Make Database For make any web based application, first we need to make table in Mysql database. For this we have to run following sql script. It will make task_list table in your local mysql database." CREATE TABLE `task_list` ( `task_list_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `task_details` text NOT NULL, `task_status` enum('no','yes') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; so after copying this sql command in notepad file where should i save it and how should i exectute that select * from task_list to fetch the data for above table and where should i execute it so far i could not see that phpMyAdmin where is it? please have a glance on the screen shot of my 'Xampp installation location folders'
  2. Thanks for this link,but i have some questions like:- 1) i don't have any database so where should i create this SQL table and considering my problem what should be my SQL query for the same? even if we make this SQL query any how then where to store this data? and how to and where to execute this SQL query do i need some specific software for the same? Currently i just have 'Xampp' installed on my computer also i run some test php programs under htdocs folder. 2) How to generate XML from this based on my problem statement? Thanks much...
  3. ...also I am not expert but eager to learn with the help of experts from this forum , so request experts,could you please guide me how could i proceed step by step to resolve it :- Thanks
  4. "this xml file needs to be available at a url or you actually need to generate the xml as a downloadable file, although there's not much difference between the 2. Still it does matter." ..>Images posted on server, xml file as a downloadable file "The image paths are ambiguous. Are these images that should be hosted on your server? The relative paths suggest that is the case, but you didn't specify. If you need to be able to upload images and set that attribute from a list of images, then you need a subsystem/feature that lets you submit an image through the form, and a feature that allows you to pick from the list of pre-existing images when you create or edit an entry." ..>relative path and we will provide the image name and location
  5. i am not sure how could i proceed further as so far I could just write below HTML web page but do not know how could i code further to resolve this issue?- <!DOCTYPE html> <html> <head> <title>Form</title> </head> <body> <form> a media URL:<br /> <input type="text" /> <br /><br /> an Image:<br /> <input type="file" /> <br /><br /> Title:<br /> <input type="text" /> <br /><br /> <input type="submit" /> </form> </body> </html> Thanks
  6. It should be the list that we modified the day before.
  7. that i know but can't some expert help here for resolving this issue?
  8. but i don't know how could i write code further that is why i was looking experts advice here. so could someone please guide how to proceed further?
  9. I just could write below HTML web page but donot know how could i code further to resolve this issue?- <!DOCTYPE html> <html> <head> <title>Form</title> </head> <body> <form> a media URL:<br /> <input type="text" /> <br /><br /> an Image:<br /> <input type="file" /> <br /><br /> Title:<br /> <input type="text" /> <br /><br /> <input type="submit" /> </form> </body> </html> Thanks
  10. Hi, Is it possible to create an web-page,form,that would accept specific input and generate an XML file from it.The form has to have the ability to add items in one particular section(where we can add additional streams) and give us the ability to remove streams as well. For each stream we must be able to attach a logo for that stream as well. Xojo or Php for this could be used, below is the sample XML file and Data Format. <?xml version="1.0" encoding="UTF-8" ?> <collectionList> <grid class="5ColumnGrid"> <section> <lockup onselect="playMedia('https://player.vimeo.com/external/187143276.m3u8?s...')"> <img src="/resources/images/lockups/shelf1.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 1</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/184669023.m3u8?s...')"> <img src="/resources/images/lockups/shelf2.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 2</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/181758939.m3u8?s...')"> <img src="/resources/images/lockups/shelf3.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 3</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/180890459.m3u8?s...')"> <img src="/resources/images/lockups/shelf4.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 4</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/180014530.m3u8?s...')"> <img src="/resources/images/lockups/shelf5.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 5</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/178583018.m3u8?s...')"> <img src="/resources/images/lockups/shelf6.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 6</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/178457098.m3u8?s...')"> <img src="/resources/images/lockups/shelf7.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 7</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/177558935.m3u8?s...')"> <img src="/resources/images/lockups/shelf8.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 8</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/173738601.m3u8?s...')"> <img src="/resources/images/lockups/shelf9.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 9</title> </lockup> <lockup onselect="playMedia('https://player.vimeo.com/external/187143276.m3u8?s...')"> <img src="/resources/images/lockups/shelf2.png" width="308" height="308" /> <title class="showTextOnHighlight">Title 10</title> </lockup> </section> </grid> </collectionList> </stackTemplate> </document> If Yes, then how to write the desired PHP code to solve this problem? Thanks
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.