i am new in PHP and i'm just asking what tool can i use to create my webstite using PHP and MYsql as my database so that i don't have to write the HTML code myself some FREE tool that provides drags and drops or something so that i'm concerned only by the business behind each part , PHP work, any help? :)
I have used Eclipse. It is free, it's not WYSIWYG, but it does include very good auto complete features. I'm not sure that you will be able to drag and drop an e-commerce solution, for example, from any editor, but there are plenty of good code samples you can cut and paste and begin to work from there.
You can use this editor: http://en.wikipedia.org/wiki/Quanta_Plus
Have a look at Weebly.
Weebly is an online, free widget-based Web site creator. It uses a widget-style format, allowing
users to create pages with only a few clicks by dragging and dropping
different page elements
You can try it for free, and pay the hosting.
There is no PHP integration support tough.
Agile Toolkit allows you to develop web app without writing HTML, but you still need to write some PHP code and learn. If you are looking for UI-only solutions, look at Drupal.
Related
I do have a website, which works with the following technologies:
HTML (index.html - in combination with Bootstrap)
Javascript (some .js files)
PHP (some PHP files)
This website has more an app function. Why? Because my visitors are able to request some content from different sources, depending on their input. In addition, these different sources are hostet on different domains.
(Here an example, for better imagine about my website: Think about a website which is an online calculator. The visitor can input some data. Regarding the data there is result. What I want to do is, this website convert to an an mobile-app, better to PWA.)
What do I want to do?
I would like to build a progessive app, where I can build a mobile app which should work on iOS and Android.
What kind of tools I do have?
I do have Visual Studio Enterprise 2017. I think this IDE is enough to realize my project.
Questions:
Is it possible to use PHP on a mobile app (PWAs), which was build with Visual Studio? What do I have to take care?
If I want to create a new Project on Visual Studio, I am able to create projects in different programming language. Question, in my case, which one would you recommend me to build up PWA? Which one is most compatible to do it stuff with mobile apps? Please check my attachment.
PWA is a Progressive Web App so I think you can't use langues as C++. Maybe C# but I don't know.
Yes you can use PHP to built PWA.
Use visual studio code if you like. You decide which editor or IDE you use in your project.
Guide that can help you:
https://developers.google.com/web/fundamentals/codelabs/your-first-pwapp/
I am working on a project (already started), but I do not know if it is done with framework since there are files in many different folders, but I do not see any syntax referring to some framework that I know of.
I hope someone can help me...
Well it would depend on the Folder Hierarchies and the code.
If the views folder has the term "blade" on it, it's definitely laravel.
If the the code of the library has the term "CI Controller" somewhere in the libraries its definitely CodeIgniter.
If the code has a lot of "wp-" string in its code, its definitely Wordpress.
TIP: Put the whole folder in Sublime, search the folder (right click the folder and choose "Find in folder...") and search for terms that are generally reserved words for mostly used frameworks.
There are different methods to identify the PHP framework used by a web application. But one of the easiest way I would like to share it with you to use this extension in your browser called Wappalyzer.
Wappalyzer is a cross-platform utility that uncovers the technologies used on websites. It detects content management systems, e-commerce platforms, web frameworks, server software, analytics tools and many more.
There are a few other tools out there that analyze what a website is using.
BuiltWith - Stand alone site, also available as a plugin
W3Techs - Stand alone site, also available as a plugin
Auto-generated comments may also help. In my case, I can tell from the comments in index.php that it's written in CodeIgniter.
If you have a copy of the project hosted somewhere you can use https://builtwith.com
I'm looking for a script (there has to be one) that help me to let me user translate my getText based PHP project.
Right now, I don't have time to create a solution on my one, so I were looking for some proper open-source solution using Google Search, but I could not find anything.
There are a lot of commercial solutions for this, but I would like to use a simple PHP alternative on my own server. It does not have to have a lot of features; I just want to select the languages I need and let the people translate and check translations.
I don't know of any solutions in PHP, but there are several open source projects for web-based translation tools. For example:
Weblate is based on Python/Django and supports Git integration. I think it is used by phpMyAdmin, so it should be suitable for PHP projects.
Zanata is written in Java and used by JBoss.
I also found SimplePO on Google Code which is written in PHP, but it does not seem to support plural forms. There is also a more recently updated fork on GitHub.
I am looking to create a web site that will need to exchange information with a Filemaker Pro (version 11) database. Using PHP I can create simple web apps that submit and retrieve data from Filemaker. I would however like to use a CMS framework (such as Drupal) to allow users to control access to the site and update site content (blog posts, images, etc ...).
Is it possible to use Drupal as a "shell", controlling access to certain pages and allowing site editors to modify content, while embedding a PHP page/form to interact with the Filemaker data? I would be planning to use MySQL for Drupal and the custom "web apps" would access Filemaker. Thanks for any help.
Have you ever heard of the expression "there's a module for that?" It's used quite a bit in the Drupal world. And yes, for Filemaker, there is a Module for That!. It's called, the Filemaker module, see more detail at http://drupal.org/project/filemaker.
Now I've never tested it, so it may not give you everything you want. But the beauty of open source is that you can always contribute what it doesn't already have. Or at least see how they did it to see if its worth it for you to try your own integration.
Now this module is one version behind current, so maybe you can learn Drupal by learning to upgrade the module. There's great guides on how to do this.
I'm looking around for an open source form building package for PHP, and figured the hive-mob-mind of StackOverflow might be able to tilt me in the right direction.
Specifically, I'm looking for a form/survey builder application. I want something that lets an end user use a web based GUI to create and configure/surveys and web-based forms.
What are the de-facto standard tools/packages that people use for this kind of thing these days. I'm interested in software packages, not in hosted services.
php-form-builder-class is an open-source project hosted on Google's Project Hosting service - http://code.google.com/p/php-form-builder-class/. There are many examples included to get you started quickly. I don't believe there is currently a GUI provided for end users to build forms though. I use this in my development and would recommend.
Hey you should check the jquery.formbuilder by botskonet on github in URL:
jquery.formbuilder
I don't know of a stand-alone package, but I know some CMS solutions have this. Maybe you could look into their code base and if it's modulare use it in your project.
One I know of that uses it is WebSiteBaker. Don't know if the code is any good thoug.
I think you want something with a GUI that your users can use to make forms...
Try this..
http://blog.sonuku.com/2009/04/11/php-formbuilder/
-FT
Apponitro pForm is the only thing I've ever seen with a GUI. You still have to paste the code into your page (and write the handler). They have a paid version MachForm with more features. I've never used them so I can't make any recommendations.