-
Posts
3,254 -
Joined
-
Last visited
-
Days Won
453
Content Type
Profiles
Forums
Events
Downloads
Gallery
Store
Everything posted by administrator
-
You should have basic skills so you have some value to the company. That said, start putting out your resume and see what happens.
-
Need To Auto Fill-in External Website's Html Form And Submit
administrator replied to saversites's topic in PHP
Why not just the form information and submit the form and use PHP's form processing superglobals (PHP superglobals $_GET and $_POST) to parse the form input fields? -
Welcome to the forum.
-
Hi, Are you on cloud.studioweb.com or school.studioweb.com?
-
Hmmm ... Sounds like a MAMP specific setting issue. Worst case, you can put that code into a separate file, and use PHP includes to include it.
-
At this point, you don't have to worry about this. Setting this comes into play in production situations.
-
Hello! New Member Here
administrator replied to JohnVHerman's topic in New Members Forum - Start Here!
Welcome to the forum! -
Can put up a site but know no SEO
administrator replied to DangerousDave's topic in Social Media Marketing & Web Marketing
Good stuff. -
Can put up a site but know no SEO
administrator replied to DangerousDave's topic in Social Media Marketing & Web Marketing
Good SEO is simple these days: Build websites using modern techniques. I teach that in my web design and development courses, so you are covered there. The content in the sites, should contain a real distribution of keywords for the terms that people use to search. How a social presence that is topical and points back to your site. Use multi media with metadata that is tagged with keywords appropriate to the subject. Stef -
Hi, Sorry for the long delay. Your HTML coding needs work. There are errors in it that are messing things up. For example: <br> xyz </br> ... The above is bad code. There is no closing <br> tag,
-
What is the difference between layout and template?
administrator replied to ayano32's topic in Beginners Web Design
A template is just a layout prebuilt for you. There is nothing special in the code. -
Sorry for the late reply. You can turn off error reporting in the PHP ini. Or you can search for this string on google: Notice: Undefined index: .... Your answer will appear in Stack Overflow.
-
Sorry I missed this. Too much time spent answering questions on YouTube. Good stuff. Google is your developer buddy!
-
Using Git with MAMP, XAMPP etc.
administrator replied to AlexanderApostolov's topic in Beginners PHP Videos
Wow. Sorry I missed this. I have nothing specific because there are many ways to do this. Every company will have their preferred methods depending on how they manage code. -
Just look up hosting on Google. There are many.
-
The above is not CSS. The reason the CSS is not working, is simply small errors in your code. Just Google 'CSS background image', and you are sure find many examples. Stef
-
IWD - HTML Ch4.8 - Problem with code??
administrator replied to Rich528's topic in Beginners Web Design
Hi Rich, Paths are one of the big hurdles in learning web coding. So don't let it get to you. Suggestion: Based on what I see in your code and directory screenshot, you are simply not placing your files in the proper directories. So, in your code, you are telling the web browser with this code: ../ ... That the index page is in a directory above the current page. So place your friends.html page in a sub directory and be sure you index page is above that. To test this out and to learn, first get your links working where all your pages are in the same directory. Stef -
Missing HTML Code for Lessons 6.5 and 6.6
administrator replied to mgreer58's topic in Beginners Web Design
Cool. -
Hi Demi! My Python course covers the foundations of Python and the Python ecosystem. You will come out of it confident in your knowledge of Python's foundations. It will serve as a great platform to explore whichever specialization you want to get into. In module 2 for example, I go over the Python career paths ... this is beyond just the coding. https://www.killervideostore.com/video-courses/beginners_python_3.php Here is the TOC: Chapter 1: Introduction to Python Introduction Python learning tips Install Python 3.6 on Mac Install Python on Windows Your first Python code! Chapter 2: Data types and variables Data Types: string and int + comments Intro to Variables and Floats Why so many programming languages? Comments and variables - round two!! Variables – behind the scenes Mixing the data types string and int Chapter 3: Learn Python while Drawing Intro to drawing with Python IDEs Explained Python Loops Introduction Python Loops with range() Python drawing with loops Python conditional statements – part 1 Python operators Drawing with loops and conditionals – part 1 Drawing with loops and conditionals – part 2 Chapter 4: Python collections Python history and Philosophy Python List - introduction Python List - reverse and count functions Python List - len function and del Tuples Python Sequences Overview and Review Python Dictionary / Maps continued Python Dictionary / Maps – updating, inserting and deleting Chapter 5: Functions and loops Python PEP 8 Input function While loops and infinite loops Nerd words: keywords, syntax, statements, expressions Functions, creating, calling and indents Functions, simple game and flow control Functions, arguments / parameters and return values Function arguments and variable scope Functions – multiple parameters Flow control with elif and else Function in functions and type conversion Chapter 6: Treasure hunt game Treasure Hunt Game – create function skeletons Treasure Hunt Game – docstring Treasure Hunt Game – function returns Treasure Hunt Game – enter_cave function Treasure Hunt Game – main_loop Chapter 7: Python OOP OOP basic concepts Creating our first class OOP - methods and init OOP - tkinter - basic gui and objects OOP - tkinter gui with an image MyDoctor - class skeleton MyDoctor - instantiate the class MyDoctor - nerd class details MyDoctor - docstring and __doc__ Why write Object Oriented Python Code? OO - inheritance basics OO overriding __str__ special method Method and function default values Creating and using Modules Chapter 8: Files and Exceptions Opening Files with Python Opening Files - creating functions Opening Files - creating a class Opening Files - exceptions Opening Files - writing files Advanced exceptions / error handling Reading files line by line Searching files - simple line search Searching files - regular expressions Module 2: Python Career Paths Employee Freelance contractor Create and sell your own Python Programs Module 3: Python Specializations and Learning Resources Web app creation Ai and ML Data sciences Server processing, app scripting
-
Hi, Email me at stefan at studioweb and I will send you access to the Python streaming course with quizzing. Please include your IWD ID as well. Thanks!
-
I don't think it is bad. I think though that it has to be used with a lighter touch than what you typically see. I've addressed this in my videos on OOP inheritance as an example. In my own coding career, I would use both procedural and OO programming but leaned heavily OO ... with a light touch. Stef