Jump to content

element121

New Members
  • Posts

    8
  • Joined

  • Last visited

  • Days Won

    1

element121 last won the day on June 7 2018

element121 had the most liked content!

element121's Achievements

Newbie

Newbie (1/5)

1

Reputation

  1. What code did you try to use to hide the form? I can't see it looking quickly. If you are using JQuery you should be able to easily hide the form with .hide(), referencing the form by it's id attribute: $("#registration").hide();
  2. Can you describe your proposed use case for the schema? When I see multiple tables that appear to have the same definition, they look redundant to me. If you need a table4, table5 you will just add them in the future? You can combine all these in one table for example: table_combined with a column to indicate a different type (values 1, 2, 3) and 4, 5, 6... etc if required in the future.
  3. It looks like the comma is added here: $subdivision = $_GET['LM_Char25_4'] . ", "; Try changing that to this: $subdivision = $_GET['LM_Char25_4']; Hope that helps, Jon
  4. A quick google search for "php word library" will give you some options. In my experience any library I've tried hasn't worked well and we've reverted to creating PDF's instead of Word Documents.
  5. Hi, You should be able to use a something like SimpleHTMLDom to grab the data, I've used it on various sites: http://simplehtmldom.sourceforge.net/manual.htm Hope that helps, Jon
  6. Hi Ian, Try var_dump($_GET) at the top of this page and you will see what GET contains. It looks like the variables aren't being passed from the page that calls this page. GET may not be the best way to pass all the variables to another page, if this data is coming from the database, it might be better to use that. Hope that helps, Jon
  7. Hi karmadorji, Have you checked out some of the CI tutorials, for example: http://www.codeigniter.com/userguide3/tutorial/create_news_items.html Hope that helps, Jon
×
×
  • 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.